ccm commited on
Commit
872d20d
·
1 Parent(s): e23262e

Update app.py

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