Sviatoslav
commited on
Commit
·
dcc9d79
1
Parent(s):
6baf4d2
Update README.md
Browse files
README.md
CHANGED
@@ -49,7 +49,7 @@ model_id = "dreamlike-art/dreamlike-photoreal-1.0"
|
|
49 |
pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
|
50 |
pipe = pipe.to("cuda")
|
51 |
|
52 |
-
prompt = "
|
53 |
image = pipe(prompt).images[0]
|
54 |
|
55 |
image.save("./result.jpg")
|
|
|
49 |
pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
|
50 |
pipe = pipe.to("cuda")
|
51 |
|
52 |
+
prompt = "caucasian creative man wearing a sweater, sitting, on an icelandic beach"
|
53 |
image = pipe(prompt).images[0]
|
54 |
|
55 |
image.save("./result.jpg")
|