Eunchan Lee commited on
Commit
a3dd0a5
1 Parent(s): fb820ae
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -63,14 +63,14 @@ Prosecutors said the marriages were part of an immigration scam. On Friday, she
63
 
64
 
65
 
66
- with st.spinner('Loading BART Pretrained Model (_please allow for 30 seconds_)...'):
67
  summarizer_1 = load_plms(plms[0])
68
 
69
- with st.spinner('Loading Google-PEGASUS Pretrained Model (_please allow for 30 seconds_)...'):
70
  summarizer_2 = load_plms(plms[1])
71
  #summarizer_3 = load_plms(plms[2])
72
 
73
- with st.spinner('Loading Pretraining Classifier'):
74
  classifier = load_zeroshot_classifier()
75
 
76
 
 
63
 
64
 
65
 
66
+ with st.spinner(' (1) / (3) Loading BART Pretrained Model (_please allow for 30 seconds_)...'):
67
  summarizer_1 = load_plms(plms[0])
68
 
69
+ with st.spinner(' (2) / (3)Loading Google-PEGASUS Pretrained Model (_please allow for 30 seconds_)...'):
70
  summarizer_2 = load_plms(plms[1])
71
  #summarizer_3 = load_plms(plms[2])
72
 
73
+ with st.spinner('(3) / (3) Loading Pretraining Classifier'):
74
  classifier = load_zeroshot_classifier()
75
 
76