tweet-snest / app.py
wilmerags's picture
Update app.py
1bbc870
raw
history blame
320 Bytes
import streamlit as st
st.title("Tweet-SNEst")
st.write("Visualize tweets embeddings in 2D using colors for topics labels.")
_, col2, col3, _ = st.columns(4)
with col2:
tw_user = st.text_input("Twitter handle", "huggingface")
with col3:
sample = st.number_input("Maximum number of tweets to use", 1, 100, 200)