kavithapadala commited on
Commit
0805148
·
verified ·
1 Parent(s): ba31083

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
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 Prediction")
54
- # st.write("Enter clinical notes to predict ICD and CPT codes.")
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
- # else:
94
- # st.write("Please enter clinical notes for prediction.")
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