Adamiros commited on
Commit
bbc2434
·
verified ·
1 Parent(s): b414593

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -305,12 +305,11 @@ with demo:
305
  with gr.Column():
306
  model_name_textbox = gr.Textbox(label="Model name")
307
  #precision = gr.Radio(["bfloat16", "float16", "4bit"], label="Precision", info="What precision are you using for inference?")
308
- #precision_options = []
309
  precision = gr.Dropdown(
310
  choices=[i.value.name for i in Precision if i != Precision.Unknown],
311
  label="Precision",
312
  multiselect=False,
313
- value="float16",
314
  interactive=True,
315
  )
316
  hf_model_id = gr.Textbox(label="Huggingface Model ID")
 
305
  with gr.Column():
306
  model_name_textbox = gr.Textbox(label="Model name")
307
  #precision = gr.Radio(["bfloat16", "float16", "4bit"], label="Precision", info="What precision are you using for inference?")
 
308
  precision = gr.Dropdown(
309
  choices=[i.value.name for i in Precision if i != Precision.Unknown],
310
  label="Precision",
311
  multiselect=False,
312
+ value="Other",
313
  interactive=True,
314
  )
315
  hf_model_id = gr.Textbox(label="Huggingface Model ID")