Update app.py
Browse files
app.py
CHANGED
@@ -37,10 +37,6 @@ with DemoTab:
|
|
37 |
'Texto': [(sintomas[:50] + '...') if len(sintomas) > 50 else sintomas],
|
38 |
'Diagn贸stico': [pred_berto[0]['label']]
|
39 |
})
|
40 |
-
df = pd.DataFrame({
|
41 |
-
'Texto': [utils.clean_text(sintomas)],
|
42 |
-
'Diagn贸stico': [pred_berto]
|
43 |
-
})
|
44 |
|
45 |
st.markdown("### Resultado:")
|
46 |
st.caption("")
|
|
|
37 |
'Texto': [(sintomas[:50] + '...') if len(sintomas) > 50 else sintomas],
|
38 |
'Diagn贸stico': [pred_berto[0]['label']]
|
39 |
})
|
|
|
|
|
|
|
|
|
40 |
|
41 |
st.markdown("### Resultado:")
|
42 |
st.caption("")
|