Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -59,14 +59,13 @@ def generate(
|
|
59 |
|
60 |
if not use_vae:
|
61 |
pipe = StableDiffusionImg2ImgPipeline.from_pretrained("runwayml/stable-diffusion-v1-5", torch_dtype=torch.float16)
|
|
|
|
|
62 |
url = "https://raw.githubusercontent.com/CompVis/stable-diffusion/main/assets/stable-samples/img2img/sketch-mountains-input.jpg"
|
63 |
|
64 |
response = requests.get(url)
|
65 |
-
if response.status_code == 200:
|
66 |
init_image = Image.open(BytesIO(response.content)).convert("RGB")
|
67 |
init_image = init_image.resize((768, 512))
|
68 |
-
else:
|
69 |
-
print(f"Error downloading image: {response.status_code}")
|
70 |
|
71 |
if use_vae:
|
72 |
vae = AutoencoderKL.from_pretrained(vaecall, torch_dtype=torch.float16)
|
|
|
59 |
|
60 |
if not use_vae:
|
61 |
pipe = StableDiffusionImg2ImgPipeline.from_pretrained("runwayml/stable-diffusion-v1-5", torch_dtype=torch.float16)
|
62 |
+
pipe = pipe.to(device)
|
63 |
+
|
64 |
url = "https://raw.githubusercontent.com/CompVis/stable-diffusion/main/assets/stable-samples/img2img/sketch-mountains-input.jpg"
|
65 |
|
66 |
response = requests.get(url)
|
|
|
67 |
init_image = Image.open(BytesIO(response.content)).convert("RGB")
|
68 |
init_image = init_image.resize((768, 512))
|
|
|
|
|
69 |
|
70 |
if use_vae:
|
71 |
vae = AutoencoderKL.from_pretrained(vaecall, torch_dtype=torch.float16)
|