alfredplpl
commited on
Commit
•
96aa145
1
Parent(s):
805c4eb
Fix readme
Browse files
README.md
CHANGED
@@ -72,7 +72,7 @@ model_id = "alfredplpl/cool-japan-diffusion-for-learning-2-0"
|
|
72 |
pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
|
73 |
pipe = pipe.to("cuda")
|
74 |
|
75 |
-
prompt = "anime, a beautuful girl with black hair and
|
76 |
image = pipe(prompt, height=512, width=512).images[0]
|
77 |
|
78 |
image.save("girl.png")
|
|
|
72 |
pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
|
73 |
pipe = pipe.to("cuda")
|
74 |
|
75 |
+
prompt = "anime, a beautuful girl with black hair and red eyes, kimono, 4k, detailed"
|
76 |
image = pipe(prompt, height=512, width=512).images[0]
|
77 |
|
78 |
image.save("girl.png")
|