Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -347,7 +347,7 @@ last_topic = topics_df['Topic'].iloc[-1]
|
|
347 |
|
348 |
# interative form for user to select a topic and inspect its top words and tweets
|
349 |
with st.form('inspect_tweets'):
|
350 |
-
inspect_topic = st.number_input(f'Enter Topic (from {first_topic} to {last_topic}) to Inspect:', min_value=first_topic, max_value=last_topic, value=
|
351 |
submit = st.form_submit_button('Inspect Topic')
|
352 |
|
353 |
# get top five words from list of tuples
|
|
|
347 |
|
348 |
# interative form for user to select a topic and inspect its top words and tweets
|
349 |
with st.form('inspect_tweets'):
|
350 |
+
inspect_topic = st.number_input(f'Enter Topic (from {first_topic} to {last_topic}) to Inspect:', min_value=first_topic, max_value=last_topic, value=9)
|
351 |
submit = st.form_submit_button('Inspect Topic')
|
352 |
|
353 |
# get top five words from list of tuples
|