Update app.py
Browse files
app.py
CHANGED
@@ -50,8 +50,8 @@ model, tokenizer = load_model()
|
|
50 |
mlb = load_mlb()
|
51 |
|
52 |
# Streamlit UI
|
53 |
-
st.title("Automated Medical Coding
|
54 |
-
# st.write("Enter clinical notes to predict
|
55 |
|
56 |
# Text input for Clinical Notes
|
57 |
clinical_note = st.text_area("Enter clinical notes to predict ICD and CPT codes")
|
@@ -90,8 +90,8 @@ if st.button('Predict'):
|
|
90 |
else:
|
91 |
st.write("No codes predicted.")
|
92 |
|
93 |
-
|
94 |
-
|
95 |
|
96 |
|
97 |
|
|
|
50 |
mlb = load_mlb()
|
51 |
|
52 |
# Streamlit UI
|
53 |
+
st.title("Automated Medical Coding Prediction")
|
54 |
+
# st.write("Enter clinical notes to predict CPT and ICD codes.")
|
55 |
|
56 |
# Text input for Clinical Notes
|
57 |
clinical_note = st.text_area("Enter clinical notes to predict ICD and CPT codes")
|
|
|
90 |
else:
|
91 |
st.write("No codes predicted.")
|
92 |
|
93 |
+
else:
|
94 |
+
st.write("Please enter clinical notes for prediction.")
|
95 |
|
96 |
|
97 |
|