File size: 929 Bytes
7eae2ec
25a6734
 
 
d548156
 
 
 
 
 
25a6734
d548156
 
 
 
25a6734
1bbc870
 
0a699f8
 
1bbc870
0a699f8
33108e8
25a6734
d548156
 
 
 
 
4700cf0
25a6734
4700cf0
25a6734
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import streamlit as st
import tweepy


@st.cache(show_spinner=False, allow_output_mutation=True)
def load_model(model_name: str) -> SentenceTransformer:
    embedder = model_name
    return SentenceTransformer(embedder)


client = tweepy.Client(bearer_token=st.secrets["tw_bearer_token"])
model_to_use = {
    "English": "all-MiniLM-L12-v2",
    "Use all the ones you know (~15 lang)": "paraphrase-multilingual-MiniLM-L12-v2"
}

st.title("Tweet-SNEst")
st.write("Visualize tweets embeddings in 2D using colors for topics labels.")
col1, col2 = st.columns(2)
with col1:
    tw_user = st.text_input("Twitter handle", "huggingface")
with col2:
    sample = st.number_input("Maximum number of tweets to use", 1, 300, 100, 10)
    
expected_lang = st.radio(
    "What language should be assumed to be found?",
    ('English', 'Use all the ones you know (~15 lang)'))


usr = client.get_user(username=tw_user)
 
st.write(usr.data.id)