Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -50,16 +50,20 @@ def generate(
|
|
50 |
num_inference_steps_base: int = 25,
|
51 |
use_vae: bool = False,
|
52 |
use_lora: bool = False,
|
53 |
-
model = '
|
54 |
vaecall = 'madebyollin/sdxl-vae-fp16-fix',
|
55 |
lora = '',
|
|
|
56 |
lora_scale: float = 0.7,
|
57 |
):
|
58 |
if torch.cuda.is_available():
|
59 |
|
60 |
if not use_vae:
|
61 |
-
pipe =
|
62 |
-
|
|
|
|
|
|
|
63 |
if use_vae:
|
64 |
vae = AutoencoderKL.from_pretrained(vaecall, torch_dtype=torch.float16)
|
65 |
pipe = DiffusionPipeline.from_pretrained(model, vae=vae, torch_dtype=torch.float16)
|
|
|
50 |
num_inference_steps_base: int = 25,
|
51 |
use_vae: bool = False,
|
52 |
use_lora: bool = False,
|
53 |
+
model = 'runwayml/stable-diffusion-v1-5',
|
54 |
vaecall = 'madebyollin/sdxl-vae-fp16-fix',
|
55 |
lora = '',
|
56 |
+
url = "https://raw.githubusercontent.com/CompVis/stable-diffusion/main/assets/stable-samples/img2img/sketch-mountains-input.jpg",
|
57 |
lora_scale: float = 0.7,
|
58 |
):
|
59 |
if torch.cuda.is_available():
|
60 |
|
61 |
if not use_vae:
|
62 |
+
pipe = StableDiffusionImg2ImgPipeline.from_pretrained(model, torch_dtype=torch.float16)
|
63 |
+
response = requests.get(url)
|
64 |
+
init_image = Image.open(BytesIO(response.content)).convert("RGB")
|
65 |
+
init_image = init_image.resize((768, 512))
|
66 |
+
|
67 |
if use_vae:
|
68 |
vae = AutoencoderKL.from_pretrained(vaecall, torch_dtype=torch.float16)
|
69 |
pipe = DiffusionPipeline.from_pretrained(model, vae=vae, torch_dtype=torch.float16)
|