gatesla commited on
Commit
280dad1
·
verified ·
1 Parent(s): 2463ed2

Fixing first error message

Browse files
Files changed (1) hide show
  1. app.py +2 -2
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(shape=(650,650))
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(shape=(650,650))
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],