Stremie commited on
Commit
4269d86
1 Parent(s): 2919eda

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -25,5 +25,5 @@ sintomas = st.text_input(label = 'Introduce s铆ntomas',
25
  pred_berto = classifier_berto(utils.clean_text(sintomas))
26
  pred_xml = classifier_xml(utils.clean_text(sintomas))
27
 
28
- st.markdown('Predicci贸n BERTO: 'pred_berto[0]['label'])
29
- st.markdown('Predicci贸n xml: 'pred_xml[0]['label'])
 
25
  pred_berto = classifier_berto(utils.clean_text(sintomas))
26
  pred_xml = classifier_xml(utils.clean_text(sintomas))
27
 
28
+ st.markdown('Predicci贸n BERTO: ' + pred_berto[0]['label'])
29
+ st.markdown('Predicci贸n xml: ' + pred_xml[0]['label'])