leavoigt commited on
Commit
abe2730
1 Parent(s): 29705f2

Update utils/target_classifier.py

Browse files
Files changed (1) hide show
  1. utils/target_classifier.py +6 -1
utils/target_classifier.py CHANGED
@@ -107,7 +107,12 @@ def target_classification(haystack_doc:pd.DataFrame,
107
 
108
  haystack_doc['Target Label'] = 'NA'
109
 
110
- if not target_classifier_model:
 
 
 
 
 
111
 
112
  target_classifier_model = st.session_state['target_classifier']
113
 
 
107
 
108
  haystack_doc['Target Label'] = 'NA'
109
 
110
+ ## TEST DELETE ###
111
+ if classifier_model:
112
+ st.write("This is the classifier model")
113
+ st.write(classifier_model)
114
+
115
+ if not classifier_model:
116
 
117
  target_classifier_model = st.session_state['target_classifier']
118