ColeGuion commited on
Commit
c49d633
·
verified ·
1 Parent(s): 2781740

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -5
app.py CHANGED
@@ -19,7 +19,7 @@ def format_prompt(message, history):
19
  return prompt
20
 
21
 
22
- # Don't track actual history
23
  def format_prompt_grammar(message, history):
24
  prompt = "<s>"
25
 
@@ -40,7 +40,7 @@ def format_prompt_grammar(message, history):
40
 
41
 
42
  def generate(prompt, history, system_prompt, temperature=0.9, max_new_tokens=256, top_p=0.95, repetition_penalty=1.0):
43
- print("\n\nSystem Prompt: '{}'".format(system_prompt))
44
 
45
  temperature = float(temperature)
46
  if temperature < 1e-2: temperature = 1e-2
@@ -71,15 +71,16 @@ additional_inputs=[
71
  gr.Slider( label="Repetition penalty", value=1.2, minimum=1.0, maximum=2.0, step=0.05, interactive=True, info="Penalize repeated tokens", )
72
  ]
73
 
74
- examples=['Give me the grammatically correct version of the sentence: "We shood buy an car"', "Give me an example exam question testing students on square roots on basic integers", "Would this block of HTML code run?\n```\n\n```", "I have been to New York last summer.", "We shood buy an car.", "People is coming to my party.", "She is more taller.", "Their were lot of sheeps.", "I want to speak English good.", "I must to buy a new cartoon book."]
75
- examples = [[x, None, None, None, None, None] for x in examples]
 
76
 
77
 
78
  gr.ChatInterface(
79
  fn=generate,
80
  chatbot=gr.Chatbot(show_label=False, show_share_button=False, show_copy_button=True, likeable=True, layout="panel"),
81
  additional_inputs=additional_inputs,
82
- title="Mixtral 46.7B",
83
  examples=examples,
84
  concurrency_limit=20,
85
  ).launch(show_api=False)
 
19
  return prompt
20
 
21
 
22
+ # Use for GEC, Doesn't track actual history
23
  def format_prompt_grammar(message, history):
24
  prompt = "<s>"
25
 
 
40
 
41
 
42
  def generate(prompt, history, system_prompt, temperature=0.9, max_new_tokens=256, top_p=0.95, repetition_penalty=1.0):
43
+ print(f"\n\nSystem Prompt: '{system_prompt}'")
44
 
45
  temperature = float(temperature)
46
  if temperature < 1e-2: temperature = 1e-2
 
71
  gr.Slider( label="Repetition penalty", value=1.2, minimum=1.0, maximum=2.0, step=0.05, interactive=True, info="Penalize repeated tokens", )
72
  ]
73
 
74
+ examples=['Give me the grammatically correct version of the sentence: "We shood buy an car"', "Give me an example exam question testing students on square roots on basic integers", "Would this block of HTML code run?\n```\n\n```"]
75
+ #examples += ["I have been to New York last summer.", "We shood buy an car.", "People is coming to my party.", "She is more taller.", "Their were lot of sheeps.", "I want to speak English good.", "I must to buy a new cartoon book."]
76
+ #examples = [[x, None, None, None, None, None] for x in examples]
77
 
78
 
79
  gr.ChatInterface(
80
  fn=generate,
81
  chatbot=gr.Chatbot(show_label=False, show_share_button=False, show_copy_button=True, likeable=True, layout="panel"),
82
  additional_inputs=additional_inputs,
83
+ title="My Mistral Space",
84
  examples=examples,
85
  concurrency_limit=20,
86
  ).launch(show_api=False)