Spaces:
Runtime error
Runtime error
Commit
·
db6f361
1
Parent(s):
6bfa6c6
update
Browse files
app.py
CHANGED
@@ -36,7 +36,7 @@ try:
|
|
36 |
predicted_topic = suggest_topic(whole_text)
|
37 |
|
38 |
st.write('Suggested Topics')
|
39 |
-
for i in predicted_topic:
|
40 |
st.write(i)
|
41 |
except Exception as e:
|
42 |
print("Error", e)
|
|
|
36 |
predicted_topic = suggest_topic(whole_text)
|
37 |
|
38 |
st.write('Suggested Topics')
|
39 |
+
for i in predicted_topic[:10]:
|
40 |
st.write(i)
|
41 |
except Exception as e:
|
42 |
print("Error", e)
|