Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -14,7 +14,7 @@ multi_view_diffusion_pipeline = DiffusionPipeline.from_pretrained(
|
|
14 |
).to("cuda")
|
15 |
|
16 |
@spaces.GPU
|
17 |
-
def run(image):
|
18 |
image = np.array(image, dtype=np.float32) / 255.0
|
19 |
images = multi_view_diffusion_pipeline(
|
20 |
"", image, guidance_scale=5, num_inference_steps=30, elevation=elevation
|
@@ -33,5 +33,13 @@ def run(image):
|
|
33 |
return grid_img
|
34 |
|
35 |
|
36 |
-
demo = gr.Interface(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
37 |
demo.launch()
|
|
|
14 |
).to("cuda")
|
15 |
|
16 |
@spaces.GPU
|
17 |
+
def run(image, elevation):
|
18 |
image = np.array(image, dtype=np.float32) / 255.0
|
19 |
images = multi_view_diffusion_pipeline(
|
20 |
"", image, guidance_scale=5, num_inference_steps=30, elevation=elevation
|
|
|
33 |
return grid_img
|
34 |
|
35 |
|
36 |
+
demo = gr.Interface(
|
37 |
+
title="Quick demo of the multi-view from an image model",
|
38 |
+
fn=run,
|
39 |
+
inputs=[
|
40 |
+
gr.Image(label="Input Image"),
|
41 |
+
gr.Slider(0, 100, 10, label="Elevation", info="Choose your value for elevation")
|
42 |
+
],
|
43 |
+
outputs=gr.Image(label="Output Image")
|
44 |
+
)
|
45 |
demo.launch()
|