carisackc commited on
Commit
2f6ed2c
1 Parent(s): 51a6450

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -100,6 +100,7 @@ with col4:
100
 
101
  runtext =st.text_area(inputNote, str(original_text2), height=300)
102
 
 
103
  def visualize (run_text,output):
104
  text =''
105
  best_sentences = []
@@ -172,8 +173,9 @@ with col2:
172
 
173
  col3, col4 = st.columns(2)
174
  with col3:
175
- st.text_area(visualize (runtext,output))
176
-
 
177
  with col4:
178
  st.text_area('testing', str(reference_text))#,label_visibility="hidden")
179
 
 
100
 
101
  runtext =st.text_area(inputNote, str(original_text2), height=300)
102
 
103
+
104
  def visualize (run_text,output):
105
  text =''
106
  best_sentences = []
 
173
 
174
  col3, col4 = st.columns(2)
175
  with col3:
176
+ #st.text_area(visualize (runtext,output))
177
+ splittext = [x for x in runtext.split('.')]
178
+ st.write(splittext)
179
  with col4:
180
  st.text_area('testing', str(reference_text))#,label_visibility="hidden")
181