Update generate.py

Adapting to the input function, a text box for inputting content has been added.
This commit is contained in:
Lian Junhong 2023-03-17 10:30:27 +08:00 committed by GitHub
parent c39da83e2b
commit 3a47bd18e8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -46,11 +46,11 @@ model.eval()
def evaluate(
instruction,
input=None,
temperature=0.1,
top_p=0.75,
top_k=40,
num_beams=4,
input=None,
**kwargs,
):
prompt = generate_prompt(instruction, input)
@ -82,6 +82,9 @@ gr.Interface(
gr.components.Textbox(
lines=2, label="Instruction", placeholder="Tell me about alpacas."
),
gr.components.Textbox(
lines=2, label="Input", placeholder="none"
),
gr.components.Slider(minimum=0, maximum=1, value=0.1, label="Temperature"),
gr.components.Slider(minimum=0, maximum=1, value=0.75, label="Top p"),
gr.components.Slider(minimum=0, maximum=100, step=1, value=40, label="Top k"),