fffiloni commited on
Commit
61ede52
·
verified ·
1 Parent(s): 7a8e332

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -7
app.py CHANGED
@@ -195,16 +195,16 @@ with gr.Blocks(css='style.css') as demo:
195
  inputs = [prompt,video_inp,seed_inp, trim_in]
196
  outputs = [video_out]
197
 
198
- #ex = gr.Examples(
199
- # [
200
- # ["Make it a marble sculpture", "./examples/pexels-jill-burrow-7665249_512x512.mp4", 422112651, 4],
201
- # ["Make it molten lava", "./examples/Ocean_Pexels_ 8953474_512x512.mp4", 43571876, 4]
202
- # ],
203
- # inputs=inputs,
204
  # outputs=outputs,
205
  # fn=infer,
206
  # cache_examples=True,
207
- #)
208
 
209
  gr.HTML(article)
210
 
 
195
  inputs = [prompt,video_inp,seed_inp, trim_in]
196
  outputs = [video_out]
197
 
198
+ ex = gr.Examples(
199
+ [
200
+ ["Make it a marble sculpture", "./examples/pexels-jill-burrow-7665249_512x512.mp4", 422112651, 4],
201
+ ["Make it molten lava", "./examples/Ocean_Pexels_ 8953474_512x512.mp4", 43571876, 4]
202
+ ],
203
+ inputs=inputs,
204
  # outputs=outputs,
205
  # fn=infer,
206
  # cache_examples=True,
207
+ )
208
 
209
  gr.HTML(article)
210