leavoigt commited on
Commit
3430268
·
verified ·
1 Parent(s): 205f96b

Update appStore/vulnerability_analysis.py

Browse files
Files changed (1) hide show
  1. appStore/vulnerability_analysis.py +4 -0
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