wilmerags commited on
Commit
1bbc870
·
1 Parent(s): 7eae2ec

Update app.py

Browse files

test: Create a placeholder UI for potential fields

Files changed (1) hide show
  1. app.py +7 -2
app.py CHANGED
@@ -1,4 +1,9 @@
1
  import streamlit as st
2
 
3
- x = st.slider('Select a value')
4
- st.write(x, 'squared is', x * x)
 
 
 
 
 
 
1
  import streamlit as st
2
 
3
+ st.title("Tweet-SNEst")
4
+ st.write("Visualize tweets embeddings in 2D using colors for topics labels.")
5
+ _, col2, col3, _ = st.columns(4)
6
+ with col2:
7
+ tw_user = st.text_input("Twitter handle", "huggingface")
8
+ with col3:
9
+ sample = st.number_input("Maximum number of tweets to use", 1, 100, 200)