OmegaSunset commited on
Commit
e825ec1
·
verified ·
1 Parent(s): 9f8e4aa

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +34 -0
README.md ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: creativeml-openrail-m
3
+ base_model: Cyberdelia/CyberRealistic
4
+ tags:
5
+ - stable-diffusion-1.5
6
+ - diffusers
7
+ - converted-model
8
+ - cyberrealistic
9
+ model_type: stable-diffusion-1.5
10
+ ---
11
+
12
+ # CyberRealistic (Diffusers Format)
13
+
14
+ 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.
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
+ ## Usage
19
+
20
+ ```python
21
+ from diffusers import StableDiffusionPipeline
22
+ import torch
23
+
24
+ pipe = StableDiffusionPipeline.from_pretrained("your-username/CyberRealistic-diffusers", torch_dtype=torch.float16)
25
+ pipe.to("cuda")
26
+
27
+ prompt = "a cyberpunk portrait of a woman in neon lights"
28
+ image = pipe(prompt).images[0]
29
+ image.save("output.png")
30
+ ```
31
+
32
+ ## License
33
+
34
+ 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.