--- 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.