File size: 2,649 Bytes
f4f0833 b57bc6a f4f0833 b57bc6a f4f0833 b57bc6a f4f0833 b57bc6a f4f0833 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
---
language:
- en
license: creativeml-openrail-m
tags:
- stable-diffusion
- stable-diffusion-diffusers
- text-to-image
- diffusers
inference: true
---
Diffuser model for this SD checkpoint:
https://civitai.com/models/10028/neverending-dream-ned
**emilianJR/NeverEndingDream** is the HuggingFace diffuser that you can use with **diffusers.StableDiffusionPipeline()**.
Examples | Examples | Examples
---- | ---- | ----
![](https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/bb99c649-2942-4357-a67f-edef83591667/width=450/17812-424037130-masterpiece_1.4_most_beautiful_girl_in_the_world_glossy_lips_ultra_detailed_eyes_Absurdres_hdr_ultra_detailed_illustrati.jpeg) | ![](https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/5208fbf5-4d10-4dd7-a5fe-e8d5a293b8c3/width=450/00381-2281759351-masterpiece,%20(photorealistic_1.4),%20best%20quality,%20beautiful%20lighting,__(ulzzang-6500_0.5),%20makima%20_(chainsaw%20man_),%20(red%20hair)+(l.jpeg) | ![](https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/991f0217-2501-4106-957a-fcc7643f7061/width=450/17990-2972238300-Jedi_meditation_1.3_serene_photo1girl_Jedi_master_in_deep_meditation_in_jedioutfit_sitting_cross-legged_desert_oasis_.jpeg)
![](https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/04bdb33c-a31b-4cdc-aa5a-4e3b46d6b53f/width=450/00061-2599351392.jpeg) | ![](https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/57c18eee-44db-49a4-b5b6-b90144e45b59/width=450/17426-903950809-masterpiece_1.1_best_quality_1girl_sam_yang_portrait_shot_looking_at_viewer_Enchanting_elegance_1.2_captivating_woma.jpeg) | ![](https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/75742154-cabd-4b7f-82e1-c788a7b73138/width=450/3978520480-2581545631-illustration,%20absurdres,%20%20masterpiece,%201boy,%20jim%20lee%20,batman,%20standing,%20night,%20city,%20male%20focus,serious,%20on%20roof,cape,black%20armo.jpeg)
-------
## 🧨 Diffusers
This model can be used just like any other Stable Diffusion model. For more information,
please have a look at the [Stable Diffusion](https://huggingface.co/docs/diffusers/api/pipelines/stable_diffusion).
```python
from diffusers import StableDiffusionPipeline
import torch
model_id = "emilianJR/NeverEndingDream"
pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
pipe = pipe.to("cuda")
prompt = "YOUR PROMPT"
image = pipe(prompt).images[0]
image.save("image.png")
```
## License
This model is open access and available to all, with a CreativeML OpenRAIL-M license further specifying rights and usage.
The CreativeML OpenRAIL License specifies:
[Please read the full license here](https://huggingface.co/spaces/CompVis/stable-diffusion-license) |