breadlicker45 commited on
Commit
7a3dcd9
1 Parent(s): 2ded7ac

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -17,12 +17,15 @@ with st.sidebar:
17
  max_length = st.slider('Max text length', 0, 2000, 80)
18
 
19
  num_beams = st.slider('N° tree beams search', 1, 15, 1)
20
-
21
  early_stopping = st.selectbox(
22
  'Early stopping text generation',
23
  ('True', 'False'), key={'True' : True, 'False': False}, index=0)
24
 
25
  no_ngram_repeat = st.slider('Max repetition limit', 1, 3, 1)
 
 
 
26
 
27
  with col1:
28
  prompt= st.text_area('Your prompt here',
 
17
  max_length = st.slider('Max text length', 0, 2000, 80)
18
 
19
  num_beams = st.slider('N° tree beams search', 1, 15, 1)
20
+
21
  early_stopping = st.selectbox(
22
  'Early stopping text generation',
23
  ('True', 'False'), key={'True' : True, 'False': False}, index=0)
24
 
25
  no_ngram_repeat = st.slider('Max repetition limit', 1, 3, 1)
26
+
27
+ st.markdown('## https://mrcheeze.github.io/musenet-midi/ paste the numbers/musenet encoders you get from the ai into the big box and then click export midi')
28
+
29
 
30
  with col1:
31
  prompt= st.text_area('Your prompt here',