Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -17,7 +17,7 @@ multi_view_diffusion_pipeline = DiffusionPipeline.from_pretrained(
|
|
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=
|
21 |
)
|
22 |
|
23 |
images = [Image.fromarray((img * 255).astype("uint8")) for img in images]
|
@@ -33,5 +33,5 @@ def run(image):
|
|
33 |
return grid_img
|
34 |
|
35 |
|
36 |
-
demo = gr.Interface(fn=run, inputs="image", outputs="image")
|
37 |
demo.launch()
|
|
|
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
|
21 |
)
|
22 |
|
23 |
images = [Image.fromarray((img * 255).astype("uint8")) for img in images]
|
|
|
33 |
return grid_img
|
34 |
|
35 |
|
36 |
+
demo = gr.Interface(title="Quick demo of the multi-view from an image model", fn=run, inputs="image", outputs="image", gradio.Slider(0, 100, 10, label="elevation", info="choose your value for elevation"))
|
37 |
demo.launch()
|