Spaces:
Sleeping
Sleeping
Update appStore/vulnerability_analysis.py
Browse files
appStore/vulnerability_analysis.py
CHANGED
@@ -73,6 +73,10 @@ def app():
|
|
73 |
df = vulnerability_classification(haystack_doc=df,
|
74 |
threshold= params['threshold'])
|
75 |
|
|
|
|
|
|
|
|
|
76 |
|
77 |
# Store df in session state with key1
|
78 |
st.session_state.key1 = df
|
|
|
73 |
df = vulnerability_classification(haystack_doc=df,
|
74 |
threshold= params['threshold'])
|
75 |
|
76 |
+
# New SetFit script gives output as tensor, turn into right format
|
77 |
+
st.write("This is the output")
|
78 |
+
st.write(df)
|
79 |
+
|
80 |
|
81 |
# Store df in session state with key1
|
82 |
st.session_state.key1 = df
|