ccm commited on
Commit
5c5bf62
·
1 Parent(s): 05c46e6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -307,6 +307,6 @@ with gradio.Blocks() as demo:
307
  btn = gradio.Button("Run")
308
  img = gradio.Image(label="Transition")
309
  btn.click(fn=interpolate, inputs=[t1, t2, d1, d2, th1, th2, steps], outputs=[img])
310
- examples = gradio.Examples(examples=[["hamburger_box", "hot_dog_box", "1.00", "1.00", "2", "2", "20"], ["hamburger_box", "hot_dog_box", "0.10", "1.00", "10", "10", "5"]], inputs = [t1, t2, d1, d2, th1, th2, steps], outputs = [img], cache_examples = True)
311
 
312
  demo.launch(debug=True)
 
307
  btn = gradio.Button("Run")
308
  img = gradio.Image(label="Transition")
309
  btn.click(fn=interpolate, inputs=[t1, t2, d1, d2, th1, th2, steps], outputs=[img])
310
+ examples = gradio.Examples(examples=[["hamburger_box", "hot_dog_box", "1.00", "1.00", "2", "2", "20"], ["hamburger_box", "hot_dog_box", "0.10", "1.00", "10", "10", "5"]], fn=interpolate, inputs=[t1, t2, d1, d2, th1, th2, steps], outputs=[img], cache_examples = True)
311
 
312
  demo.launch(debug=True)