aemin commited on
Commit
e703015
·
1 Parent(s): 9bbea32

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -120,7 +120,7 @@ st.subheader("")
120
 
121
 
122
  #caching the models in the dictionary
123
- @st.cache(allow_output_mutation=True)
124
  def load_sparknlp_models():
125
  ner_models_list= ["nerdl_fewnerd_100d", "ner_conll_elmo", "ner_mit_movie_complex_distilbert_base_cased", "ner_conll_albert_large_uncased", "onto_100"]
126
  embeddings_list= ["glove_100d", "elmo", "distilbert_base_cased", "albert_large_uncased", "glove_100d_for_onto"]
@@ -192,10 +192,10 @@ def load_sparknlp_models():
192
 
193
 
194
 
195
- placeholder= st.empty()
196
- placeholder.info("If you are launching the app for the first time, it may take some time (approximately 1 minute) for SparkNLP models to load...")
197
  nlp_dict= load_sparknlp_models()
198
- placeholder.empty()
199
 
200
 
201
 
 
120
 
121
 
122
  #caching the models in the dictionary
123
+ @st.cache(allow_output_mutation=True, show_spinner=False)
124
  def load_sparknlp_models():
125
  ner_models_list= ["nerdl_fewnerd_100d", "ner_conll_elmo", "ner_mit_movie_complex_distilbert_base_cased", "ner_conll_albert_large_uncased", "onto_100"]
126
  embeddings_list= ["glove_100d", "elmo", "distilbert_base_cased", "albert_large_uncased", "glove_100d_for_onto"]
 
192
 
193
 
194
 
195
+ #placeholder= st.empty()
196
+ #placeholder.info("If you are launching the app for the first time, it may take some time (approximately 1 minute) for SparkNLP models to #load...")
197
  nlp_dict= load_sparknlp_models()
198
+ #placeholder.empty()
199
 
200
 
201