Update pages/upload_file.py
Browse files- 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
|
40 |
-
col1.subheader("
|
41 |
-
col2.subheader("SBS
|
42 |
-
col3.subheader("
|
|
|
|
|
|
|
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": []}
|