Spaces:
Runtime error
Runtime error
Danil
commited on
Commit
Β·
11a3f9d
1
Parent(s):
abe5a52
app.py
CHANGED
@@ -29,7 +29,7 @@ max_length = st.slider('max_length', 1, 2048, 128)
|
|
29 |
top_k = st.slider('top_k', 0, 100, 50)
|
30 |
top_p = st.slider('top_p', 0.0, 1.0, 0.9)
|
31 |
temperature = st.slider('temperature', 0.0, 1.0, 0.6)
|
32 |
-
num_beams = st.slider('num_beams', 1, 100,
|
33 |
repetition_penalty = st.slider('repetition_penalty', 1.0, 10.0, 1.0)
|
34 |
|
35 |
|
|
|
29 |
top_k = st.slider('top_k', 0, 100, 50)
|
30 |
top_p = st.slider('top_p', 0.0, 1.0, 0.9)
|
31 |
temperature = st.slider('temperature', 0.0, 1.0, 0.6)
|
32 |
+
num_beams = st.slider('num_beams', 1, 100, 1)
|
33 |
repetition_penalty = st.slider('repetition_penalty', 1.0, 10.0, 1.0)
|
34 |
|
35 |
|