Spaces:
Runtime error
Runtime error
Commit
路
457d41e
1
Parent(s):
284507d
Update app.py
Browse files
app.py
CHANGED
@@ -84,6 +84,7 @@ st.markdown('<style>body{background-color: Blue;}</style>',unsafe_allow_html=Tru
|
|
84 |
|
85 |
colT1,colT2 = st.columns([2,8])
|
86 |
with colT2:
|
|
|
87 |
# st.title('Analisis de comentarios sexistas en Twitter')
|
88 |
st.markdown(""" <style> .font {
|
89 |
font-size:40px ; font-family: 'Cooper Black'; color: #06bf69;}
|
@@ -98,6 +99,10 @@ with colT2:
|
|
98 |
font-size:16px ; font-family: 'Times New Roman'; color: #3358ff;}
|
99 |
</style> """, unsafe_allow_html=True)
|
100 |
|
|
|
|
|
|
|
|
|
101 |
def tweets_usuario(usuario, cant_de_tweets):
|
102 |
tabla = []
|
103 |
if(cant_de_tweets > 0 and usuario != "" ):
|
|
|
84 |
|
85 |
colT1,colT2 = st.columns([2,8])
|
86 |
with colT2:
|
87 |
+
|
88 |
# st.title('Analisis de comentarios sexistas en Twitter')
|
89 |
st.markdown(""" <style> .font {
|
90 |
font-size:40px ; font-family: 'Cooper Black'; color: #06bf69;}
|
|
|
99 |
font-size:16px ; font-family: 'Times New Roman'; color: #3358ff;}
|
100 |
</style> """, unsafe_allow_html=True)
|
101 |
|
102 |
+
st.markdown('<p class="font2">Este proyecto consiste en una aplicaci贸n web que utiliza la biblioteca Tweepy de Python para descargar tweets de Twitter, permitiendo buscar Tweets por usuario y por localidad. Luego, utiliza modelos de lenguaje basados en Transformers para analizar los tweets y detectar comentarios sexistas. Los resultados se almacenan en un dataframe para su posterior visualizaci贸n y an谩lisis. El objetivo del proyecto es identificar y proporcionar informaci贸n sobre el discurso sexista en l铆nea para combatir la discriminaci贸n y el acoso hacia las mujeres y otros grupos marginados, y as铆 informar pol铆ticas y pr谩cticas que promuevan la igualdad de g茅nero y la inclusi贸n.
|
103 |
+
</p>',unsafe_allow_html=True)
|
104 |
+
|
105 |
+
|
106 |
def tweets_usuario(usuario, cant_de_tweets):
|
107 |
tabla = []
|
108 |
if(cant_de_tweets > 0 and usuario != "" ):
|