Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -4,10 +4,9 @@ st.markdown('# Prediction of coherence in answers to open-ended questions')
|
|
4 |
|
5 |
st.markdown('## Inference')
|
6 |
|
7 |
-
Q = st.
|
8 |
-
|
9 |
-
A = st.text_input("Answer:")
|
10 |
|
|
|
11 |
if Q:
|
12 |
if A:
|
13 |
probs = C1Classifier(Q, A, is_probs=True)
|
|
|
4 |
|
5 |
st.markdown('## Inference')
|
6 |
|
7 |
+
Q = st.text_area('Question:', 'Julieta tiene 20 láminas y le regaló 12 a Daniela ¿Cuántas láminas tiene ahora Julieta?')
|
|
|
|
|
8 |
|
9 |
+
A = st.text_area('Answer:', 'nose :C')
|
10 |
if Q:
|
11 |
if A:
|
12 |
probs = C1Classifier(Q, A, is_probs=True)
|