ZeroCommand commited on
Commit
c3cf446
1 Parent(s): 4668862

change layout: move run local to top

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -256,6 +256,9 @@ with gr.Blocks(theme=theme) as iface:
256
  </h1>
257
  Welcome to Giskard Evaluator Space! Get your report immediately by simply input your model id and dataset id below. Follow our leads and improve your model in no time.
258
  ''')
 
 
 
259
  with gr.Row():
260
  model_id_input = gr.Textbox(
261
  label="Hugging Face model id",
@@ -299,10 +302,7 @@ with gr.Blocks(theme=theme) as iface:
299
 
300
  with gr.Row():
301
  example_labels = gr.Label(label='Model Prediction Sample', visible=False)
302
-
303
- with gr.Row():
304
- run_local = gr.Checkbox(label='Run in this Space', default=True, visible=False)
305
-
306
  run_btn = gr.Button(
307
  "Get Evaluation Result",
308
  variant="primary",
 
256
  </h1>
257
  Welcome to Giskard Evaluator Space! Get your report immediately by simply input your model id and dataset id below. Follow our leads and improve your model in no time.
258
  ''')
259
+ with gr.Row():
260
+ run_local = gr.Checkbox(value=True, label="Run in this Space")
261
+
262
  with gr.Row():
263
  model_id_input = gr.Textbox(
264
  label="Hugging Face model id",
 
302
 
303
  with gr.Row():
304
  example_labels = gr.Label(label='Model Prediction Sample', visible=False)
305
+
 
 
 
306
  run_btn = gr.Button(
307
  "Get Evaluation Result",
308
  variant="primary",