Spaces:
Sleeping
Sleeping
xuyingliKepler
commited on
Commit
•
cd09a0e
1
Parent(s):
db5c35a
Update app.py
Browse files
app.py
CHANGED
@@ -92,7 +92,7 @@ with tab1:
|
|
92 |
progress_text = "Operation in progress. Please wait."
|
93 |
my_bar = st.progress(0, text=progress_text)
|
94 |
|
95 |
-
for i in range(
|
96 |
my_bar.progress((i+1) * 30, text=progress_text)
|
97 |
res = sample_generation(textarea_value)
|
98 |
st.session_state.result.append(res)
|
|
|
92 |
progress_text = "Operation in progress. Please wait."
|
93 |
my_bar = st.progress(0, text=progress_text)
|
94 |
|
95 |
+
for i in range(2):
|
96 |
my_bar.progress((i+1) * 30, text=progress_text)
|
97 |
res = sample_generation(textarea_value)
|
98 |
st.session_state.result.append(res)
|