Joshua1808 commited on
Commit
4578553
·
1 Parent(s): b4a4faa

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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=['Predicción']))
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