jfataphd commited on
Commit
b6e45c4
1 Parent(s): c85c4ca

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -34,7 +34,7 @@ query = query.lower()
34
  if query:
35
  bar = st.progress(0)
36
  for i in range(10):
37
- bar.progresses((i+1)*10)
38
  time.sleep(.1)
39
  st.subheader("searching 40123 PubMed abstracts")
40
  model = Word2Vec.load("pubmed_model_clotting") # you can continue training with the loaded model!
 
34
  if query:
35
  bar = st.progress(0)
36
  for i in range(10):
37
+ bar.progress((i+1)*10)
38
  time.sleep(.1)
39
  st.subheader("searching 40123 PubMed abstracts")
40
  model = Word2Vec.load("pubmed_model_clotting") # you can continue training with the loaded model!