Spaces:
Running
Running
Update app.py
Browse files
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
|
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)
|