jkorstad commited on
Commit
ba32ce3
Β·
verified Β·
1 Parent(s): 5eac9a1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -2
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(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()
 
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()