BenchmarkBot commited on
Commit
363bb07
β€’
1 Parent(s): e02ef37

set float16 and pytorch as default

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -94,14 +94,14 @@ with demo:
94
  )
95
  backend_checkboxes = gr.CheckboxGroup(
96
  choices=["pytorch", "onnxruntime"],
97
- value=["pytorch", "onnxruntime"],
98
  label="Backends 🏭",
99
  info="Select the backends",
100
  elem_id="backend-checkboxes",
101
  )
102
  datatype_checkboxes = gr.CheckboxGroup(
103
  choices=["float32", "float16"],
104
- value=["float32", "float16"],
105
  label="Datatypes πŸ“₯",
106
  info="Select the load datatypes",
107
  elem_id="datatype-checkboxes",
 
94
  )
95
  backend_checkboxes = gr.CheckboxGroup(
96
  choices=["pytorch", "onnxruntime"],
97
+ value=["pytorch"],
98
  label="Backends 🏭",
99
  info="Select the backends",
100
  elem_id="backend-checkboxes",
101
  )
102
  datatype_checkboxes = gr.CheckboxGroup(
103
  choices=["float32", "float16"],
104
+ value=["float16"],
105
  label="Datatypes πŸ“₯",
106
  info="Select the load datatypes",
107
  elem_id="datatype-checkboxes",