Text-to-Image
Diffusers
Safetensors
StableDiffusionPipeline
stable-diffusion-1.5
converted-model
cyberrealistic
Instructions to use OmegaSunset/CyberRrealisticSD15_Diffusers with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use OmegaSunset/CyberRrealisticSD15_Diffusers with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("OmegaSunset/CyberRrealisticSD15_Diffusers", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- Draw Things
- DiffusionBee
| license: creativeml-openrail-m | |
| base_model: Cyberdelia/CyberRealistic | |
| tags: | |
| - stable-diffusion-1.5 | |
| - diffusers | |
| - converted-model | |
| - cyberrealistic | |
| model_type: stable-diffusion-1.5 | |
| # CyberRealistic (Diffusers Format) | |
| This is **Cyberdelia's CyberRealistic** model for Stable Diffusion 1.5, converted to the **Diffusers format** for use in local inference environments such as `diffusers`, `InvokeAI`, `ComfyUI`, and other compatible toolchains. | |
| > **Note:** I did not train or alter the model weights — full credit goes to **Cyberdelia**. This repository simply provides a format-converted version for local use. | |
| ## Usage | |
| ```python | |
| from diffusers import StableDiffusionPipeline | |
| import torch | |
| pipe = StableDiffusionPipeline.from_pretrained("your-username/CyberRealistic-diffusers", torch_dtype=torch.float16) | |
| pipe.to("cuda") | |
| prompt = "a cyberpunk portrait of a woman in neon lights" | |
| image = pipe(prompt).images[0] | |
| image.save("output.png") | |
| ``` | |
| ## License | |
| This model is licensed under the [CreativeML Open RAIL-M License](https://huggingface.co/spaces/CompVis/stable-diffusion-license), which allows for commercial and non-commercial usage with restrictions. Please review the license terms before use. | |