RefalMachine commited on
Commit
0f82a6a
·
verified ·
1 Parent(s): 59a471c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -3
app.py CHANGED
@@ -4,7 +4,7 @@ from huggingface_hub import InferenceClient
4
  """
5
  For more information on `huggingface_hub` Inference API support, please check the docs: https://huggingface.co/docs/huggingface_hub/v0.22.2/en/guides/inference
6
  """
7
- client = InferenceClient("HuggingFaceH4/zephyr-7b-beta")
8
 
9
 
10
  def respond(
@@ -14,6 +14,7 @@ def respond(
14
  max_tokens,
15
  temperature,
16
  top_p,
 
17
  ):
18
  messages = [{"role": "system", "content": system_message}]
19
 
@@ -33,6 +34,7 @@ def respond(
33
  stream=True,
34
  temperature=temperature,
35
  top_p=top_p,
 
36
  ):
37
  token = message.choices[0].delta.content
38
 
@@ -46,9 +48,9 @@ For information on how to customize the ChatInterface, peruse the gradio docs: h
46
  demo = gr.ChatInterface(
47
  respond,
48
  additional_inputs=[
49
- gr.Textbox(value="You are a friendly Chatbot.", label="System message"),
50
  gr.Slider(minimum=1, maximum=2048, value=512, step=1, label="Max new tokens"),
51
- gr.Slider(minimum=0.1, maximum=4.0, value=0.7, step=0.1, label="Temperature"),
52
  gr.Slider(
53
  minimum=0.1,
54
  maximum=1.0,
@@ -56,6 +58,7 @@ demo = gr.ChatInterface(
56
  step=0.05,
57
  label="Top-p (nucleus sampling)",
58
  ),
 
59
  ],
60
  )
61
 
 
4
  """
5
  For more information on `huggingface_hub` Inference API support, please check the docs: https://huggingface.co/docs/huggingface_hub/v0.22.2/en/guides/inference
6
  """
7
+ client = InferenceClient("RefalMachine/ruadapt_qwen2.5_7B_ext_u48_instruct")
8
 
9
 
10
  def respond(
 
14
  max_tokens,
15
  temperature,
16
  top_p,
17
+ repetition_penalty
18
  ):
19
  messages = [{"role": "system", "content": system_message}]
20
 
 
34
  stream=True,
35
  temperature=temperature,
36
  top_p=top_p,
37
+ repetition_penalty=repetition_penalty
38
  ):
39
  token = message.choices[0].delta.content
40
 
 
48
  demo = gr.ChatInterface(
49
  respond,
50
  additional_inputs=[
51
+ gr.Textbox(value="Ты продвинутый и полезный ИИ, который грамотно и корректно отвечает на вопросы пользователей.", label="System message"),
52
  gr.Slider(minimum=1, maximum=2048, value=512, step=1, label="Max new tokens"),
53
+ gr.Slider(minimum=0.1, maximum=4.0, value=0.3, step=0.1, label="Temperature"),
54
  gr.Slider(
55
  minimum=0.1,
56
  maximum=1.0,
 
58
  step=0.05,
59
  label="Top-p (nucleus sampling)",
60
  ),
61
+ gr.Slider(minimum=0.9, maximum=1.2, value=1.0, step=0.05, label="repetition_penalty"),
62
  ],
63
  )
64