emilianJR commited on
Commit
9500623
1 Parent(s): 991710f

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +49 -0
README.md ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ license: creativeml-openrail-m
5
+ tags:
6
+ - stable-diffusion
7
+ - stable-diffusion-diffusers
8
+ - text-to-image
9
+ - diffusers
10
+ inference: true
11
+ ---
12
+
13
+ Diffuser model for this SD checkpoint:
14
+ https://civitai.com/models/44747/progenuberanalogmix
15
+
16
+ **emilianJR/ProGenUberAnalogMix_V1** is the HuggingFace diffuser that you can use with **diffusers.StableDiffusionPipeline()**.
17
+
18
+ Examples | Examples | Examples
19
+ ---- | ---- | ----
20
+ ![](https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/69fbc9b2-4a7b-4e80-962a-069e87449d02/width=450/sd-1684445159-1228582279-64ff.jpeg) | ![](https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/de23423a-db89-4786-bdd2-9abea1258a00/width=450/00434-2844364711.jpeg) | ![](https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/963ecf76-8654-4313-d3ab-d897a344a900/width=450/00411-1274235326.jpeg)
21
+ ![](https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/921676c3-cc3b-4217-bbdc-526ecf42ee60/width=450/00033-1245107461.jpeg) | ![](https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/8a2fad9c-e058-4824-40e7-68f90dfd3f00/width=450/00400-170587807.jpeg) | ![](https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/48fab349-e696-408d-8b85-ecfae0169300/width=450/00413-1274235328.jpeg)
22
+ -------
23
+
24
+
25
+ ## 🧨 Diffusers
26
+
27
+ This model can be used just like any other Stable Diffusion model. For more information,
28
+ please have a look at the [Stable Diffusion](https://huggingface.co/docs/diffusers/api/pipelines/stable_diffusion).
29
+
30
+
31
+ ```python
32
+ from diffusers import StableDiffusionPipeline
33
+ import torch
34
+
35
+ model_id = "emilianJR/ProGenUberAnalogMix_V1"
36
+ pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
37
+ pipe = pipe.to("cuda")
38
+
39
+ prompt = "YOUR PROMPT"
40
+ image = pipe(prompt).images[0]
41
+
42
+ image.save("image.png")
43
+ ```
44
+
45
+ ## License
46
+
47
+ This model is open access and available to all, with a CreativeML OpenRAIL-M license further specifying rights and usage.
48
+ The CreativeML OpenRAIL License specifies:
49
+ [Please read the full license here](https://huggingface.co/spaces/CompVis/stable-diffusion-license)