stmnk commited on
Commit
40dffaf
1 Parent(s): e04b4d9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -29,9 +29,9 @@ if st.button('Run keyword search'):
29
  'confidence': hit['_score']} for hit in top_5_hits ]
30
 
31
  for i, doc_hit in enumerate(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:
 
29
  'confidence': hit['_score']} for hit in top_5_hits ]
30
 
31
  for i, doc_hit in enumerate(top_5_text):
32
+ st.markdown(f'*Search result #{i} (and score)*:')
33
+ st.markdown(f'..._{doc_hit["text"]}_...')
34
+ st.markdown(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: