hanzla commited on
Commit
73979b7
·
1 Parent(s): 1f56119

sliders added

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -81,7 +81,10 @@ iface = gr.Interface(
81
  gr.CheckboxGroup(adapter_options.keys(), label="Adapter Choice",type='value'),
82
  ],
83
  outputs=gr.Video(label="Generated Video"),
84
- examples = load_cached_examples()
 
 
 
85
  )
86
 
87
  iface.launch()
 
81
  gr.CheckboxGroup(adapter_options.keys(), label="Adapter Choice",type='value'),
82
  ],
83
  outputs=gr.Video(label="Generated Video"),
84
+ examples = [
85
+ ["a cat playing with a ball of yarn", "blurry", 7.5, 12, ["zoom-in"]],
86
+ ["a dog running in a field", "dark, indoors", 8.0, 8, ["pan-left", "tilt-up"]],
87
+ ]
88
  )
89
 
90
  iface.launch()