stmnk commited on
Commit
bb8fd68
1 Parent(s): 3e728c2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -28,8 +28,10 @@ if st.button('Run keyword search'):
28
  top_5_text = [{'text': hit['_source']['content'][:500],
29
  'confidence': hit['_score']} for hit in top_5_hits ]
30
 
31
- for doc_hit in top_5_text:
32
- st.write(f'Search result (and score): ... _{doc_hit["text"]}_ ... (score: {format(doc_hit["confidence"], ".3f")})')
 
 
33
 
34
  st.write(f'Answer JSON: '); st.write(top_5_text) # st.write(qa_result)
35
  else:
 
28
  top_5_text = [{'text': hit['_source']['content'][:500],
29
  'confidence': hit['_score']} for hit in top_5_hits ]
30
 
31
+ for doc_hit, i in top_5_text:
32
+ st.write(f'Search result #{i} (and score):')
33
+ st.write(f'... {doc_hit["text"]} ...')
34
+ st.write(f'(confidence score: {format(doc_hit["confidence"], ".3f")})')
35
 
36
  st.write(f'Answer JSON: '); st.write(top_5_text) # st.write(qa_result)
37
  else: