Spaces:
Runtime error
Runtime error
Commit
·
ca7dfc1
1
Parent(s):
72f6b84
Update app.py
Browse files
app.py
CHANGED
@@ -22,7 +22,7 @@ with st.sidebar:
|
|
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',
|
26 |
|
27 |
with col1:
|
28 |
prompt= st.text_area('Your prompt here',
|
|
|
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', 0, 2, 1)
|
26 |
|
27 |
with col1:
|
28 |
prompt= st.text_area('Your prompt here',
|