Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -11,6 +11,7 @@ def load_model(model_name):
|
|
11 |
@spaces.GPU()
|
12 |
def generate(
|
13 |
model_name,
|
|
|
14 |
user_input,
|
15 |
temperature=0.4,
|
16 |
top_p=0.95,
|
@@ -27,7 +28,7 @@ def generate(
|
|
27 |
if model_name == "M4-ai/tau-1.8B":
|
28 |
prompt = user_input
|
29 |
else:
|
30 |
-
prompt = f"<|im_start|>user\n{user_input}<|im_end|>\n<|im_start|>assistant\n"
|
31 |
streamer = TextIteratorStreamer(pipe.tokenizer, timeout=240.0, skip_prompt=True, skip_special_tokens=True)
|
32 |
generation_kwargs = dict(text_inputs=prompt, streamer=streamer, max_new_tokens=max_new_tokens, do_sample=True, top_p=top_p, min_p=min_p, top_k=top_k,
|
33 |
temperature=temperature, num_beams=1, repetition_penalty=1.1)
|
@@ -44,6 +45,7 @@ g = gr.Interface(
|
|
44 |
fn=generate,
|
45 |
inputs=[
|
46 |
gr.components.Dropdown(choices=model_choices, label="Model", value=model_choices[0], interactive=True),
|
|
|
47 |
gr.components.Textbox(lines=2, label="Prompt", value="Write me a Python program that calculates the factorial of a given number."),
|
48 |
gr.components.Slider(minimum=0, maximum=1, value=0.8, label="Temperature"),
|
49 |
gr.components.Slider(minimum=0, maximum=1, value=0.95, label="Top p"),
|
|
|
11 |
@spaces.GPU()
|
12 |
def generate(
|
13 |
model_name,
|
14 |
+
system,
|
15 |
user_input,
|
16 |
temperature=0.4,
|
17 |
top_p=0.95,
|
|
|
28 |
if model_name == "M4-ai/tau-1.8B":
|
29 |
prompt = user_input
|
30 |
else:
|
31 |
+
prompt = f"<|im_start|>system\n{system}<|im_end|>\n<|im_start|>user\n{user_input}<|im_end|>\n<|im_start|>assistant\n"
|
32 |
streamer = TextIteratorStreamer(pipe.tokenizer, timeout=240.0, skip_prompt=True, skip_special_tokens=True)
|
33 |
generation_kwargs = dict(text_inputs=prompt, streamer=streamer, max_new_tokens=max_new_tokens, do_sample=True, top_p=top_p, min_p=min_p, top_k=top_k,
|
34 |
temperature=temperature, num_beams=1, repetition_penalty=1.1)
|
|
|
45 |
fn=generate,
|
46 |
inputs=[
|
47 |
gr.components.Dropdown(choices=model_choices, label="Model", value=model_choices[0], interactive=True),
|
48 |
+
gr.components.Textbox(lines=2, label="System Prompt", value="You are an AI."),
|
49 |
gr.components.Textbox(lines=2, label="Prompt", value="Write me a Python program that calculates the factorial of a given number."),
|
50 |
gr.components.Slider(minimum=0, maximum=1, value=0.8, label="Temperature"),
|
51 |
gr.components.Slider(minimum=0, maximum=1, value=0.95, label="Top p"),
|