Spaces:
Paused
Paused
throaway2854
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -160,9 +160,9 @@ with gr.Blocks(theme="huggingface") as iface:
|
|
160 |
gr.Markdown("Enter a URL to add an image and its tags to the dataset. Progress is saved automatically.")
|
161 |
|
162 |
with gr.Row():
|
163 |
-
dataset_name_input = gr.Textbox(lines=1, placeholder="Enter dataset name...", value="default_dataset")
|
164 |
-
url_input = gr.Textbox(lines=2, placeholder="Enter image URL here...")
|
165 |
-
cookies_input = gr.Textbox(lines=2,
|
166 |
add_button = gr.Button("Add Image")
|
167 |
|
168 |
result_output = gr.Textbox(label="Result")
|
|
|
160 |
gr.Markdown("Enter a URL to add an image and its tags to the dataset. Progress is saved automatically.")
|
161 |
|
162 |
with gr.Row():
|
163 |
+
dataset_name_input = gr.Textbox(lines=1, label="Dataset Name", placeholder="Enter dataset name...", value="default_dataset")
|
164 |
+
url_input = gr.Textbox(lines=2, label="URL", placeholder="Enter image URL here...")
|
165 |
+
cookies_input = gr.Textbox(lines=2, label="Cookies (optional)", placeholder="Enter cookies")
|
166 |
add_button = gr.Button("Add Image")
|
167 |
|
168 |
result_output = gr.Textbox(label="Result")
|