ppsingh commited on
Commit
a768b0c
1 Parent(s): 5c08ad9

Update appStore/sector.py

Browse files
Files changed (1) hide show
  1. appStore/sector.py +0 -5
appStore/sector.py CHANGED
@@ -31,11 +31,6 @@ def app():
31
  df = st.session_state.key1
32
  classifier = load_sectorClassifier(classifier_name=params['model_name'])
33
  st.session_state['{}_classifier'.format(classifier_identifier)] = classifier
34
-
35
- if sum(df['Target Label'] == 'TARGET') > 100:
36
- warning_msg = ": This might take sometime, please sit back and relax."
37
- else:
38
- warning_msg = ""
39
 
40
  df = sector_classification(haystack_doc=df,
41
  threshold= params['threshold'])
 
31
  df = st.session_state.key1
32
  classifier = load_sectorClassifier(classifier_name=params['model_name'])
33
  st.session_state['{}_classifier'.format(classifier_identifier)] = classifier
 
 
 
 
 
34
 
35
  df = sector_classification(haystack_doc=df,
36
  threshold= params['threshold'])