Spaces:
Runtime error
Runtime error
Commit
·
4578553
1
Parent(s):
b4a4faa
Update app.py
Browse files
app.py
CHANGED
@@ -195,7 +195,7 @@ def analizar_frase(frase):
|
|
195 |
text['Prediccion'] = np.where(text['Prediccion'] == 0 , 'No Sexista', 'Sexista')
|
196 |
|
197 |
|
198 |
-
tabla = st.table(text.reset_index(drop=True).head(20).style.applymap(color_survived, subset=['
|
199 |
|
200 |
return tabla
|
201 |
|
|
|
195 |
text['Prediccion'] = np.where(text['Prediccion'] == 0 , 'No Sexista', 'Sexista')
|
196 |
|
197 |
|
198 |
+
tabla = st.table(text.reset_index(drop=True).head(20).style.applymap(color_survived, subset=['Prediccion']))
|
199 |
|
200 |
return tabla
|
201 |
|