Duy-Anh Dang commited on
Commit
16e34f0
·
1 Parent(s): a7398a2

added whitespace

Browse files
Files changed (1) hide show
  1. app.py +7 -1
app.py CHANGED
@@ -75,7 +75,7 @@ def add_bg_from_url():
75
 
76
  # add_bg_from_url()
77
 
78
- st.markdown("#### Sentiment Analysis: Email Industry v1.2")
79
 
80
  stats_col1, stats_col2, stats_col3, stats_col4 = st.columns([1,1,1,1])
81
 
@@ -268,3 +268,9 @@ if st.button('Generate Predictions'):
268
  #FunctionsModelSA_V1.corrections(best_target_tones,test_predictions))
269
 
270
  placeholder.empty()
 
 
 
 
 
 
 
75
 
76
  # add_bg_from_url()
77
 
78
+ st.title("Sentiment Analysis: Email Industry v1.2")
79
 
80
  stats_col1, stats_col2, stats_col3, stats_col4 = st.columns([1,1,1,1])
81
 
 
268
  #FunctionsModelSA_V1.corrections(best_target_tones,test_predictions))
269
 
270
  placeholder.empty()
271
+
272
+ #add whitespace to fix scroll
273
+ def V_SPACE(lines):
274
+ for x in range(lines):
275
+ st.write(' ')
276
+ V_SPACE(10)