Commit
·
2d2d031
1
Parent(s):
e5b6ee5
Update README.md
Browse files
README.md
CHANGED
@@ -28,7 +28,7 @@ model_id = "ShibaDeveloper/olivia-v1.0"
|
|
28 |
pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
|
29 |
pipe = pipe.to("cuda")
|
30 |
|
31 |
-
prompt = "1girl, beautiful girl, face,
|
32 |
image = pipe(prompt).images[0]
|
33 |
|
34 |
image.save("./olivia_img.png")
|
|
|
28 |
pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
|
29 |
pipe = pipe.to("cuda")
|
30 |
|
31 |
+
prompt = "1girl, beautiful girl, face, yellow eyes, blue hair"
|
32 |
image = pipe(prompt).images[0]
|
33 |
|
34 |
image.save("./olivia_img.png")
|