eybro commited on
Commit
d8e56db
·
verified ·
1 Parent(s): 8809ab0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -138,7 +138,7 @@ with gr.Blocks() as demo:
138
  gr.Markdown("""
139
  # Image to Video App
140
  Find your favorite Gordon Ramasay scene by uploading an image from the scene, the app will thereafter find a corresponding youtube video for that scene.
141
- Or try one of our examples (unseen data for the model).
142
  """)
143
 
144
  with gr.Row():
@@ -164,7 +164,7 @@ with gr.Blocks() as demo:
164
  clear_button = gr.Button("Clear Example")
165
 
166
  clear_button.click(
167
- lambda: (None, None), # Return None for both example selection and displayed image
168
  inputs=[],
169
  outputs=[example_selection, example_display]
170
  )
 
138
  gr.Markdown("""
139
  # Image to Video App
140
  Find your favorite Gordon Ramasay scene by uploading an image from the scene, the app will thereafter find a corresponding youtube video for that scene.
141
+ Or try one of our examples (unseen images for the model).
142
  """)
143
 
144
  with gr.Row():
 
164
  clear_button = gr.Button("Clear Example")
165
 
166
  clear_button.click(
167
+ lambda: (None, None),
168
  inputs=[],
169
  outputs=[example_selection, example_display]
170
  )