Spaces:
Running
Running
BoltzmannEntropy
commited on
Commit
·
773b499
1
Parent(s):
68e4fda
readme
Browse files
app.py
CHANGED
|
@@ -328,14 +328,14 @@ def create_gradio_interface():
|
|
| 328 |
# init_image.change(show_image, inputs=init_image, outputs=init_image)
|
| 329 |
|
| 330 |
with gr.Tab("VLM model and Dataset selection"):
|
| 331 |
-
gr.Markdown("### Dataset Selection: HF or from a ZIP file.")
|
| 332 |
with gr.Accordion("Advanced Settings", open=True):
|
| 333 |
with gr.Row():
|
| 334 |
# with gr.Column():
|
| 335 |
-
use_zip_input = gr.Checkbox(label="Use ZIP File", value=False)
|
|
|
|
| 336 |
dataset_input = gr.Dropdown(choices=dataset_options, label="Select Dataset", value=dataset_options[1], visible=True)
|
| 337 |
num_images_input = gr.Radio(choices=[1, 5, 20], label="Number of Images", value=5)
|
| 338 |
-
zip_file_input = gr.File(label="Upload ZIP File of Images", file_types=[".zip"])
|
| 339 |
gr.Markdown("### VLM Model Selection")
|
| 340 |
with gr.Row():
|
| 341 |
with gr.Column():
|
|
|
|
| 328 |
# init_image.change(show_image, inputs=init_image, outputs=init_image)
|
| 329 |
|
| 330 |
with gr.Tab("VLM model and Dataset selection"):
|
| 331 |
+
gr.Markdown("### Dataset Selection: HF or load from a ZIP file.")
|
| 332 |
with gr.Accordion("Advanced Settings", open=True):
|
| 333 |
with gr.Row():
|
| 334 |
# with gr.Column():
|
| 335 |
+
use_zip_input = gr.Checkbox(label="Use ZIP File", value=False)
|
| 336 |
+
zip_file_input = gr.File(label="Upload ZIP File of Images", file_types=[".zip"])
|
| 337 |
dataset_input = gr.Dropdown(choices=dataset_options, label="Select Dataset", value=dataset_options[1], visible=True)
|
| 338 |
num_images_input = gr.Radio(choices=[1, 5, 20], label="Number of Images", value=5)
|
|
|
|
| 339 |
gr.Markdown("### VLM Model Selection")
|
| 340 |
with gr.Row():
|
| 341 |
with gr.Column():
|