Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -15,7 +15,7 @@ model = T5ForConditionalGeneration.from_pretrained(
|
|
15 |
)
|
16 |
|
17 |
instruction = st.text_area('Write an instruction:')
|
18 |
-
max_tokens = st.number_input('Max output length: ', min_value=1, max_value=64)
|
19 |
|
20 |
prompts = [
|
21 |
f"""Below is an instruction that describes a task. Write a response that appropriately completes the request.
|
@@ -35,7 +35,7 @@ generation_config = GenerationConfig(
|
|
35 |
top_p=0.995, # default 0.75
|
36 |
top_k=100, # default 80
|
37 |
repetition_penalty=1.5,
|
38 |
-
max_new_tokens=
|
39 |
)
|
40 |
|
41 |
if instruction:
|
|
|
15 |
)
|
16 |
|
17 |
instruction = st.text_area('Write an instruction:')
|
18 |
+
max_tokens = st.number_input('Max output length: ', min_value=1, max_value=64, format='%i')
|
19 |
|
20 |
prompts = [
|
21 |
f"""Below is an instruction that describes a task. Write a response that appropriately completes the request.
|
|
|
35 |
top_p=0.995, # default 0.75
|
36 |
top_k=100, # default 80
|
37 |
repetition_penalty=1.5,
|
38 |
+
max_new_tokens=max_tokens,
|
39 |
)
|
40 |
|
41 |
if instruction:
|