Spaces:
Build error
Build error
feat: Improve columns disposition and values for number_input component
Browse files
app.py
CHANGED
@@ -2,8 +2,8 @@ import streamlit as st
|
|
2 |
|
3 |
st.title("Tweet-SNEst")
|
4 |
st.write("Visualize tweets embeddings in 2D using colors for topics labels.")
|
5 |
-
|
6 |
-
with
|
7 |
tw_user = st.text_input("Twitter handle", "huggingface")
|
8 |
-
with
|
9 |
-
sample = st.number_input("Maximum number of tweets to use", 1, 300,
|
|
|
2 |
|
3 |
st.title("Tweet-SNEst")
|
4 |
st.write("Visualize tweets embeddings in 2D using colors for topics labels.")
|
5 |
+
col1, col2 = st.columns(2)
|
6 |
+
with col1:
|
7 |
tw_user = st.text_input("Twitter handle", "huggingface")
|
8 |
+
with col2:
|
9 |
+
sample = st.number_input("Maximum number of tweets to use", 1, 300, 100)
|