Lisibonny commited on
Commit
f431d52
1 Parent(s): 55fa262

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -144,7 +144,7 @@ def main():
144
  # Extract 5 greatest values fo start and end scores with indeces
145
  answer_start_scores= tf.math.reduce_sum(answer_start_scores)
146
  answer_end_scores= tf.math.reduce_sum(answer_end_scores)
147
- score = answer_start_scores[0]*answer_end_scores[0]
148
  st.write(f'Aqui {answer}' )
149
  st.write(score)
150
  cantidad_respuestas = cantidad_respuestas + 1
 
144
  # Extract 5 greatest values fo start and end scores with indeces
145
  answer_start_scores= tf.math.reduce_sum(answer_start_scores)
146
  answer_end_scores= tf.math.reduce_sum(answer_end_scores)
147
+ score = answer_start_scores*answer_end_scores
148
  st.write(f'Aqui {answer}' )
149
  st.write(score)
150
  cantidad_respuestas = cantidad_respuestas + 1