Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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=
|
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)
|