wgcv commited on
Commit
b9ad25f
·
1 Parent(s): 2ec1565

Fix loading messages

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -203,15 +203,16 @@ Given the substantial volume of data, training a model from scratch was deemed i
203
 
204
 
205
  with st.sidebar.status("Loading models...", expanded=True, state="complete") as models:
206
- st.write("Loading 1/3 (https://huggingface.co/wgcv/tidy-tab-model-t5-small)...")
 
207
  get_tidy_tab_t5()
208
  st.write("Loaded T5-Small")
209
 
210
- st.write("Loading 2/3 (https://huggingface.co/wgcv/tidy-tab-model-pegasus-xsum)...")
211
  get_tidy_tab_pegasus()
212
  st.write("Loaded Pegasus xsum")
213
 
214
- st.write("Loading 3/3 (https://huggingface.co/wgcv/tidy-tab-model-bart-large-cnn)...")
215
  load_model_bart()
216
  st.write("Loaded Pegasus Bart-Large")
217
 
 
203
 
204
 
205
  with st.sidebar.status("Loading models...", expanded=True, state="complete") as models:
206
+
207
+ st.write("Loading 1/3... (https://huggingface.co/wgcv/tidy-tab-model-t5-small)")
208
  get_tidy_tab_t5()
209
  st.write("Loaded T5-Small")
210
 
211
+ st.write("Loading 2/3... (https://huggingface.co/wgcv/tidy-tab-model-pegasus-xsum)")
212
  get_tidy_tab_pegasus()
213
  st.write("Loaded Pegasus xsum")
214
 
215
+ st.write("Loading 3/3... (https://huggingface.co/wgcv/tidy-tab-model-bart-large-cnn)")
216
  load_model_bart()
217
  st.write("Loaded Pegasus Bart-Large")
218