fix temporary progress bar
Browse files
app.py
CHANGED
|
@@ -134,7 +134,9 @@ def retrieval():
|
|
| 134 |
|
| 135 |
if sequence == ex_target:
|
| 136 |
st.markdown('### Inference')
|
| 137 |
-
|
|
|
|
|
|
|
| 138 |
my_bar.progress(100, text="HyperPCM is predicting the QSAR model for the query protein target. Done.")
|
| 139 |
|
| 140 |
st.markdown('### Retrieval')
|
|
|
|
| 134 |
|
| 135 |
if sequence == ex_target:
|
| 136 |
st.markdown('### Inference')
|
| 137 |
+
|
| 138 |
+
progress_text = "HyperPCM is predicting the QSAR model for the query protein target. Please wait."
|
| 139 |
+
my_bar = st.progress(0, text=progress_text)
|
| 140 |
my_bar.progress(100, text="HyperPCM is predicting the QSAR model for the query protein target. Done.")
|
| 141 |
|
| 142 |
st.markdown('### Retrieval')
|