carisackc commited on
Commit
c83ff75
1 Parent(s): 305d5e2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -0
app.py CHANGED
@@ -158,6 +158,11 @@ with col1:
158
  run_model(runtext)
159
  sentences=runtext.split('.')
160
  st.text_area('Reference text', str(reference_text))#,label_visibility="hidden")
 
 
 
 
 
161
 
162
 
163
  with col2:
 
158
  run_model(runtext)
159
  sentences=runtext.split('.')
160
  st.text_area('Reference text', str(reference_text))#,label_visibility="hidden")
161
+ test = pd.DataFrame(
162
+ np.random.randn(10, 5),
163
+ columns=('col %d' % i for i in range(5)))
164
+
165
+ st.table(test)
166
 
167
 
168
  with col2: