furrutiav commited on
Commit
271cafc
·
1 Parent(s): 1820603

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -3
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.text_input("Question:")
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)