Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -42,6 +42,8 @@ topics, probs = fit_transform(topic_model, tiktok)
|
|
42 |
|
43 |
placeholder = st.empty()
|
44 |
text_input = placeholder.text_area("Enter product topic here", height=300)
|
|
|
|
|
45 |
|
46 |
top_n = st.sidebar.slider("Select a number of keywords", 1, 30, 5, 1)
|
47 |
|
|
|
42 |
|
43 |
placeholder = st.empty()
|
44 |
text_input = placeholder.text_area("Enter product topic here", height=300)
|
45 |
+
print(text_input)
|
46 |
+
print(type(text_input))
|
47 |
|
48 |
top_n = st.sidebar.slider("Select a number of keywords", 1, 30, 5, 1)
|
49 |
|