mbahrami commited on
Commit
ec37d6b
·
1 Parent(s): ba90497

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -14,7 +14,8 @@ def get_model(model):
14
  @st.cache(allow_output_mutation=True)
15
  def loading_models(model='roberta-base'):
16
  return get_model(model), SentenceTransformer('all-MiniLM-L6-v2')
17
-
 
18
  def main(nlp, semantic_model, data_load_state):
19
  data_load_state.text('Inference from model...')
20
  result = nlp(text+' '+nlp.tokenizer.mask_token)
 
14
  @st.cache(allow_output_mutation=True)
15
  def loading_models(model='roberta-base'):
16
  return get_model(model), SentenceTransformer('all-MiniLM-L6-v2')
17
+
18
+ @st.cache(allow_output_mutation=True)
19
  def main(nlp, semantic_model, data_load_state):
20
  data_load_state.text('Inference from model...')
21
  result = nlp(text+' '+nlp.tokenizer.mask_token)