Fixing first error message
Browse files
app.py
CHANGED
@@ -165,7 +165,7 @@ with demo:
|
|
165 |
with gr.TabItem('Image URL'):
|
166 |
with gr.Row():
|
167 |
url_input = gr.Textbox(lines=2,label='Enter valid image URL here..')
|
168 |
-
img_output_from_url = gr.Image(
|
169 |
|
170 |
with gr.Row():
|
171 |
example_url = gr.Dataset(components=[url_input],samples=[[str(url)] for url in urls])
|
@@ -175,7 +175,7 @@ with demo:
|
|
175 |
with gr.TabItem('Image Upload'):
|
176 |
with gr.Row():
|
177 |
img_input = gr.Image(type='pil')
|
178 |
-
img_output_from_upload= gr.Image(
|
179 |
|
180 |
with gr.Row():
|
181 |
example_images = gr.Dataset(components=[img_input],
|
|
|
165 |
with gr.TabItem('Image URL'):
|
166 |
with gr.Row():
|
167 |
url_input = gr.Textbox(lines=2,label='Enter valid image URL here..')
|
168 |
+
img_output_from_url = gr.Image(height=650,width=650)
|
169 |
|
170 |
with gr.Row():
|
171 |
example_url = gr.Dataset(components=[url_input],samples=[[str(url)] for url in urls])
|
|
|
175 |
with gr.TabItem('Image Upload'):
|
176 |
with gr.Row():
|
177 |
img_input = gr.Image(type='pil')
|
178 |
+
img_output_from_upload= gr.Image(height=650,width=650)
|
179 |
|
180 |
with gr.Row():
|
181 |
example_images = gr.Dataset(components=[img_input],
|