emilianJR commited on
Commit
9c6a792
1 Parent(s): 069ce6b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +51 -1
README.md CHANGED
@@ -1,2 +1,52 @@
1
  Diffuser model for this SD checkpoint:
2
- https://civitai.com/models/43331/majicmix-realistic
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  Diffuser model for this SD checkpoint:
2
+ https://civitai.com/models/43331/majicmix-realistic
3
+
4
+ ---
5
+ language:
6
+ - en
7
+ license: creativeml-openrail-m
8
+ tags:
9
+ - stable-diffusion
10
+ - stable-diffusion-diffusers
11
+ - text-to-image
12
+ - diffusers
13
+ inference: true
14
+ ---
15
+
16
+ Diffuser model for this SD checkpoint:
17
+ https://civitai.com/models/22402/fantasticmix
18
+
19
+ **fantasticmix** is the HuggingFace diffuser that you can use with **diffusers.StableDiffusionPipeline()**.
20
+
21
+ Examples | Examples | Examples
22
+ ---- | ---- | ----
23
+ ![](https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/3becfbe1-2c2b-4807-9242-1c4dd4b2951d/width=400/20230522_212035_709500.jpeg) | ![](https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/75a8cef1-f0f1-4486-bb4a-315d4ae162c8/width=400/20230522_194420_265983.jpeg) | ![](https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/d70699ee-8b7e-4283-8f33-6c1971f20948/width=400/20230522_194845_416509.jpeg)
24
+ ![](https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/8d5ebd73-ce72-4c3f-a94b-f007e981a950/width=400/20230522_183739_592683.jpeg) | ![](https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/8c6d7827-f101-44b1-9c36-a2be3013cb2a/width=400/20230522_212245_329331.jpeg) | ![](https://image.civitai.com/xG1nkqKTMzGDvpLrqFT7WA/ff942f66-dc5b-4e81-905d-c8ebc783d1d3/width=400/01141.jpeg)
25
+ -------
26
+
27
+
28
+ ## 🧨 Diffusers
29
+
30
+ This model can be used just like any other Stable Diffusion model. For more information,
31
+ please have a look at the [Stable Diffusion](https://huggingface.co/docs/diffusers/api/pipelines/stable_diffusion).
32
+
33
+
34
+ ```python
35
+ from diffusers import StableDiffusionPipeline
36
+ import torch
37
+
38
+ model_id = "emilianJR/fantasticmix"
39
+ pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
40
+ pipe = pipe.to("cuda")
41
+
42
+ prompt = "YOUR PROMPT"
43
+ image = pipe(prompt).images[0]
44
+
45
+ image.save("image.png")
46
+ ```
47
+
48
+ ## License
49
+
50
+ This model is open access and available to all, with a CreativeML OpenRAIL-M license further specifying rights and usage.
51
+ The CreativeML OpenRAIL License specifies:
52
+ [Please read the full license here](https://huggingface.co/spaces/CompVis/stable-diffusion-license)