Update app.py
Browse files
app.py
CHANGED
@@ -78,7 +78,7 @@ if st.button('Predict Answers'):
|
|
78 |
|
79 |
placeholder.dataframe(data.style.apply(styling_specific_cell,tags=predicted_answer_coordinates,colors=colors2,axis=None))
|
80 |
|
81 |
-
for query, answer, predicted_agg, c in zip(
|
82 |
st.write('\n')
|
83 |
st.markdown('<font color={} size=4>**{}**</font>'.format(c,query), unsafe_allow_html=True)
|
84 |
st.write('\n')
|
|
|
78 |
|
79 |
placeholder.dataframe(data.style.apply(styling_specific_cell,tags=predicted_answer_coordinates,colors=colors2,axis=None))
|
80 |
|
81 |
+
for query, answer, predicted_agg, c in zip(input_queries, answers, aggregation_predictions_string, colors1):
|
82 |
st.write('\n')
|
83 |
st.markdown('<font color={} size=4>**{}**</font>'.format(c,query), unsafe_allow_html=True)
|
84 |
st.write('\n')
|