Adam Jirkovsky commited on
Commit
8356f3c
·
1 Parent(s): 1319700

Improve captcha generation

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -325,7 +325,7 @@ with demo:
325
  with gr.Row():
326
  with gr.Column():
327
  with gr.Group():
328
- model_name_textbox = gr.Textbox(label="Model name")
329
  #precision = gr.Radio(["bfloat16", "float16", "4bit"], label="Precision", info="What precision are you using for inference?")
330
  precision = gr.Dropdown(
331
  choices=[i.value.name for i in Precision if i != Precision.Unknown],
 
325
  with gr.Row():
326
  with gr.Column():
327
  with gr.Group():
328
+ model_name_textbox = gr.Textbox(label="Model name", info="Please avoid using the slash (/) character")
329
  #precision = gr.Radio(["bfloat16", "float16", "4bit"], label="Precision", info="What precision are you using for inference?")
330
  precision = gr.Dropdown(
331
  choices=[i.value.name for i in Precision if i != Precision.Unknown],