carisackc commited on
Commit
eca3574
1 Parent(s): 24b738e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -10
app.py CHANGED
@@ -101,8 +101,7 @@ original_text2 = original_text['Original_Text'].values
101
  reference_text = original_text['Reference_text'].values
102
 
103
  ##========= Buttons to the 4 tabs ========
104
- col1, col2, col3, col4 = st.columns([1,1,1,1])
105
- admission = col1.stbutton("🏥 Admission")
106
 
107
  #with col1:
108
  # st.button("🏥 Admission")
@@ -120,14 +119,9 @@ admission = col1.stbutton("🏥 Admission")
120
  # #nav_page('Social Notes')
121
 
122
 
123
- #if st.button("🏥 Admission"):
124
- # runtext =st.text_area('Input Admission note here:', str(original_text2), height=300)
125
- #if st.button("📆Daily Narrative"):
126
- # runtext =st.text_area('Input Daily Narrative here:', str(original_text2), height=300)
127
- #if st.button("Discharge Plan"):
128
- # runtext =st.text_area('Input Discharge Plan here:', str(original_text2), height=300)
129
- #if st.button("📝Social Notes"):
130
- # runtext =st.text_area('Input Social Note here:', str(original_text2), height=300)
131
 
132
  def run_model(input_text):
133
 
 
101
  reference_text = original_text['Reference_text'].values
102
 
103
  ##========= Buttons to the 4 tabs ========
104
+ col1, col2, col3, col4 = st.columns(4)
 
105
 
106
  #with col1:
107
  # st.button("🏥 Admission")
 
119
  # #nav_page('Social Notes')
120
 
121
 
122
+
123
+ runtext =st.text_area('Input note here:', str(original_text2), height=300)
124
+
 
 
 
 
 
125
 
126
  def run_model(input_text):
127