Update README.md
Browse files
README.md
CHANGED
@@ -29,9 +29,10 @@ This is a Stable Diffusion model fine-tuned on `ramen noodles` images for the fo
|
|
29 |
```python
|
30 |
from diffusers import StableDiffusionPipeline
|
31 |
|
32 |
-
pipeline = StableDiffusionPipeline.from_pretrained('Prgckwb/
|
33 |
-
|
34 |
-
|
|
|
35 |
```
|
36 |
|
37 |
## Generated Images
|
|
|
29 |
```python
|
30 |
from diffusers import StableDiffusionPipeline
|
31 |
|
32 |
+
pipeline = StableDiffusionPipeline.from_pretrained('Prgckwb/JiroStyle-ramen')
|
33 |
+
prompt = "a photo of jirostyle ramen noodles"
|
34 |
+
|
35 |
+
image = pipeline(prompt).images[0]
|
36 |
```
|
37 |
|
38 |
## Generated Images
|