Rolv-Arild commited on
Commit
204b85d
·
verified ·
1 Parent(s): dce44ae

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -274,8 +274,7 @@ def gradio_app():
274
  # Use gr.Column to stack components vertically
275
  with gr.Column():
276
  file_input = gr.File(label="Upload Replay File", type="filepath", file_types=[".replay"])
277
- checkboxes = gr.Radio(label="Options", choices=["Nullify goal difference", "Ignore ties"], type="index",
278
- info=RADIO_INFO)
279
  submit_button = gr.Button("Generate Predictions")
280
  plot_output = gr.Plot(label="Predictions")
281
  download_button = gr.DownloadButton("Download Predictions", visible=False)
 
274
  # Use gr.Column to stack components vertically
275
  with gr.Column():
276
  file_input = gr.File(label="Upload Replay File", type="filepath", file_types=[".replay"])
277
+ checkboxes = gr.Radio(label="Options", choices=RADIO_OPTIONS, type="index")
 
278
  submit_button = gr.Button("Generate Predictions")
279
  plot_output = gr.Plot(label="Predictions")
280
  download_button = gr.DownloadButton("Download Predictions", visible=False)