Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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.
|
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!
|