saadob12 commited on
Commit
0c7ed46
·
1 Parent(s): e66792d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -78,14 +78,15 @@ if uploaded_file is not None and mode is not None and title is not None:
78
  check = p.check_columns(contents)
79
  if check:
80
  title_data = p.combine_title_data(contents)
81
- st.write('Linearized input format of the data file: ' + title_data)
 
82
 
83
  st.write('Loading model...')
84
  model = Model(title_data, mode)
85
  st.write('Model loading done!\nGenerating Summary...')
86
  summary = model.generate()
87
- st.write('Generated Summary: ')
88
- st.write(summary)
89
 
90
 
91
 
 
78
  check = p.check_columns(contents)
79
  if check:
80
  title_data = p.combine_title_data(contents)
81
+ st.write('Linearized input format of the data file:\n ')
82
+ st.markdown('**'+ title_data + '**')
83
 
84
  st.write('Loading model...')
85
  model = Model(title_data, mode)
86
  st.write('Model loading done!\nGenerating Summary...')
87
  summary = model.generate()
88
+ st.write('Generated Summary:\n')
89
+ st.markdown('**'+ summary + '**')
90
 
91
 
92