Orion-zhen commited on
Commit
fa23349
Β·
verified Β·
1 Parent(s): 3e484e4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -4
app.py CHANGED
@@ -59,10 +59,9 @@ temperature = gr.Slider(
59
  top_p = gr.Slider(minimum=0.0, maximum=1.0, value=0.95, step=0.05, label="Top P", render=False)
60
  input_text = gr.Textbox(label="Ask math questions here", render=False)
61
  submit_btn = gr.Button(value="Ask", render=False)
62
- banner = gr.HTML("""\
63
- <p align="center"><img src="https://modelscope.oss-cn-beijing.aliyuncs.com/resource/qwen.png" style="height: 60px"/><p>"""
64
- """<center><font size=8>πŸ“– Qwen2.5-Math GGUF</center>"""
65
- """\
66
  <center><font size=3>This WebUI is based on Qwen2.5-Math-7B-Instruct-GGUF for mathematical reasoning. You can input texts of mathematical or arithmetic problems.</center>"""
67
  )
68
 
 
59
  top_p = gr.Slider(minimum=0.0, maximum=1.0, value=0.95, step=0.05, label="Top P", render=False)
60
  input_text = gr.Textbox(label="Ask math questions here", render=False)
61
  submit_btn = gr.Button(value="Ask", render=False)
62
+ banner = gr.Markdown(value="""
63
+ <p align="center"><img src="https://modelscope.oss-cn-beijing.aliyuncs.com/resource/qwen.png" style="height: 60px"/><p>
64
+ <center><font size=8>πŸ“– Qwen2.5-Math GGUF</center>
 
65
  <center><font size=3>This WebUI is based on Qwen2.5-Math-7B-Instruct-GGUF for mathematical reasoning. You can input texts of mathematical or arithmetic problems.</center>"""
66
  )
67