jkorstad commited on
Commit
d8268cd
Β·
verified Β·
1 Parent(s): 96723bd

Update app.py

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