OmegaSunset/CyberRrealisticSD15_Diffusers
042
1---2license: creativeml-openrail-m3base_model: Cyberdelia/CyberRealistic4tags:5 - stable-diffusion-1.56 - diffusers7 - converted-model8 - cyberrealistic9model_type: stable-diffusion-1.510---11 12# CyberRealistic (Diffusers Format)13 14This 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.15 16> **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.17 18## Usage19 20```python21from diffusers import StableDiffusionPipeline22import torch23 24pipe = StableDiffusionPipeline.from_pretrained("your-username/CyberRealistic-diffusers", torch_dtype=torch.float16)25pipe.to("cuda")26 27prompt = "a cyberpunk portrait of a woman in neon lights"28image = pipe(prompt).images[0]29image.save("output.png")30```31 32## License33 34This 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.35 