Spaces:
Runtime error
Runtime error
Commit
·
40e5e4c
1
Parent(s):
d0fa0e7
update
Browse files
app.py
CHANGED
@@ -41,7 +41,7 @@ try:
|
|
41 |
predicted_topic = suggest_topic(topic_classifier,whole_text)
|
42 |
clk = time.time()-start
|
43 |
if clk> 60:
|
44 |
-
st.write(f'Generated in {(
|
45 |
else:
|
46 |
st.write(f'Generated in {(clk)/60} minutes')
|
47 |
|
|
|
41 |
predicted_topic = suggest_topic(topic_classifier,whole_text)
|
42 |
clk = time.time()-start
|
43 |
if clk> 60:
|
44 |
+
st.write(f'Generated in {(clk)} secs')
|
45 |
else:
|
46 |
st.write(f'Generated in {(clk)/60} minutes')
|
47 |
|