fix typo
Browse files
README.md
CHANGED
|
@@ -38,7 +38,7 @@ model_id = "OFA-Sys/small-stable-diffusion-v0/"
|
|
| 38 |
pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
|
| 39 |
pipe = pipe.to("cuda")
|
| 40 |
|
| 41 |
-
prompt = "
|
| 42 |
image = pipe(prompt).images[0]
|
| 43 |
|
| 44 |
image.save("apple.png")
|
|
|
|
| 38 |
pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
|
| 39 |
pipe = pipe.to("cuda")
|
| 40 |
|
| 41 |
+
prompt = "an apple, 4k"
|
| 42 |
image = pipe(prompt).images[0]
|
| 43 |
|
| 44 |
image.save("apple.png")
|