georad commited on
Commit
0584596
·
verified ·
1 Parent(s): 5b4c3d0

Update pages/upload_file.py

Browse files
Files changed (1) hide show
  1. pages/upload_file.py +7 -4
pages/upload_file.py CHANGED
@@ -36,10 +36,13 @@ HuggingFace_model_results = pipeline("ner", model = "blaze999/Medical-NER")
36
 
37
  createNER_button = st.button("Map to SBS codes")
38
 
39
- col1, col2, col3 = st.columns([1,1.5,1])
40
- col1.subheader("SBS code V2.0")
41
- col2.subheader("SBS description v2.0")
42
- col3.subheader("Similarity score")
 
 
 
43
 
44
  if uploaded_file is not None and createNER_button == True:
45
  dict1 = {"word": [], "entity": []}
 
36
 
37
  createNER_button = st.button("Map to SBS codes")
38
 
39
+ col1, col2, col3 = st.columns([1,1,2.5])
40
+ col1.subheader("Score")
41
+ col2.subheader("SBS code")
42
+ col3.subheader("SBS description V2.0")
43
+
44
+ dictA = {"Score": [], "SBS Code": [], "SBS Description V2.0": []}
45
+
46
 
47
  if uploaded_file is not None and createNER_button == True:
48
  dict1 = {"word": [], "entity": []}