Spaces:
Runtime error
Runtime error
Upload app.py with huggingface_hub
Browse files
app.py
CHANGED
@@ -193,7 +193,7 @@ with gr.Blocks(css=css) as demo:
|
|
193 |
ips = [example_name, input_image, prompt, n_prompt, gen_camerapath, seed, diff_steps, render_camerapath, model_name]
|
194 |
|
195 |
run_button.click(fn=ld.run, inputs=ips[1:] + ips[:1], outputs=[result_ply_file, result_gallery, result_depth])
|
196 |
-
gaussian_button.click(fn=ld.create, inputs=ips[1:-1] + ips[:1], outputs=[result_ply_file])
|
197 |
render_button.click(fn=ld.render_video, inputs=ips[-2:-1] + ips[:1], outputs=[result_gallery, result_depth])
|
198 |
|
199 |
gr.Examples(
|
|
|
193 |
ips = [example_name, input_image, prompt, n_prompt, gen_camerapath, seed, diff_steps, render_camerapath, model_name]
|
194 |
|
195 |
run_button.click(fn=ld.run, inputs=ips[1:] + ips[:1], outputs=[result_ply_file, result_gallery, result_depth])
|
196 |
+
gaussian_button.click(fn=ld.create, inputs=ips[1:-2] + ips[-1:] + ips[:1], outputs=[result_ply_file])
|
197 |
render_button.click(fn=ld.render_video, inputs=ips[-2:-1] + ips[:1], outputs=[result_gallery, result_depth])
|
198 |
|
199 |
gr.Examples(
|