Update app.py
Browse files
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'])
|