Spaces:
Runtime error
Runtime error
Commit
·
7943200
1
Parent(s):
6227d6e
Update funtional_picture.py
Browse files- funtional_picture.py +2 -2
funtional_picture.py
CHANGED
@@ -10,8 +10,8 @@ from diffusers import (
|
|
10 |
device="cuda"
|
11 |
model_id = "IDEA-CCNL/Taiyi-Stable-Diffusion-1B-Chinese-v0.1"
|
12 |
|
13 |
-
pipe_text2img = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
|
14 |
-
pipe_img2img = StableDiffusionImg2ImgPipeline(**pipe_text2img.components)
|
15 |
def infer_text2img(prompt, guide, steps, width, height, image_in, strength):
|
16 |
if image_in is not None:
|
17 |
init_image = image_in.convert("RGB").resize((width, height))
|
|
|
10 |
device="cuda"
|
11 |
model_id = "IDEA-CCNL/Taiyi-Stable-Diffusion-1B-Chinese-v0.1"
|
12 |
|
13 |
+
pipe_text2img = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
|
14 |
+
pipe_img2img = StableDiffusionImg2ImgPipeline(**pipe_text2img.components)
|
15 |
def infer_text2img(prompt, guide, steps, width, height, image_in, strength):
|
16 |
if image_in is not None:
|
17 |
init_image = image_in.convert("RGB").resize((width, height))
|