Arafath10 commited on
Commit
80a9e93
·
1 Parent(s): f76646b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -8
app.py CHANGED
@@ -8,22 +8,23 @@ from diffusers import StableDiffusionInstructPix2PixPipeline, EulerAncestralDisc
8
 
9
  model_id = "timbrooks/instruct-pix2pix"
10
  pipe = StableDiffusionInstructPix2PixPipeline.from_pretrained(model_id, torch_dtype=torch.float16, safety_checker=None)
11
- pipe.to("cpu")
12
  pipe.scheduler = EulerAncestralDiscreteScheduler.from_config(pipe.scheduler.config)
13
 
14
- def download_image(img):
15
- image = PIL.Image.open(requests.get(img, stream=True).raw)
16
- image = PIL.ImageOps.exif_transpose(image)
17
- image = image.convert("RGB")
18
- return image
19
- image = download_image("https://raw.githubusercontent.com/timothybrooks/instruct-pix2pix/main/imgs/example.jpg")
20
 
21
  def greet(name):
22
  prompt = "add tshirt"
 
 
 
 
 
 
23
  images = pipe(prompt, image=image, num_inference_steps=10, image_guidance_scale=1).images
24
 
25
 
26
- image.save(images[0]+".png")
27
  return "done"
28
 
29
  iface = gr.Interface(fn=greet, inputs="text", outputs="text")
 
8
 
9
  model_id = "timbrooks/instruct-pix2pix"
10
  pipe = StableDiffusionInstructPix2PixPipeline.from_pretrained(model_id, torch_dtype=torch.float16, safety_checker=None)
11
+ pipe.to("cuda")
12
  pipe.scheduler = EulerAncestralDiscreteScheduler.from_config(pipe.scheduler.config)
13
 
14
+
 
 
 
 
 
15
 
16
  def greet(name):
17
  prompt = "add tshirt"
18
+ def download_image(img):
19
+ image = PIL.Image.open(requests.get(img, stream=True).raw)
20
+ image = PIL.ImageOps.exif_transpose(image)
21
+ image = image.convert("RGB")
22
+ return image
23
+ image = download_image("https://raw.githubusercontent.com/timothybrooks/instruct-pix2pix/main/imgs/example.jpg")
24
  images = pipe(prompt, image=image, num_inference_steps=10, image_guidance_scale=1).images
25
 
26
 
27
+ #image.save(images[0]+".png")
28
  return "done"
29
 
30
  iface = gr.Interface(fn=greet, inputs="text", outputs="text")