Guizmus commited on
Commit
012cb43
1 Parent(s): 29ba311

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +23 -0
README.md CHANGED
@@ -24,12 +24,35 @@ library_name: "EveryDream"
24
  To access this model, you can download the CKPT file below.
25
  </p>
26
 
 
 
27
  [2GB CKPT](https://huggingface.co/Guizmus/SouthParkStyle/resolve/main/SouthParkStyle_v1.ckpt)
28
 
29
  [11GB CKPT with training optimizers](https://huggingface.co/Guizmus/SouthParkStyle/resolve/main/SouthParkStyle_v1_with_optimizers.ckpt)
30
 
31
  [dataset for the first version](https://huggingface.co/Guizmus/SouthParkStyle/resolve/main/dataset.zip)
32
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
33
  ## License
34
 
35
  This model is open access and available to all, with a CreativeML OpenRAIL-M license further specifying rights and usage.
 
24
  To access this model, you can download the CKPT file below.
25
  </p>
26
 
27
+ ## Downloads
28
+
29
  [2GB CKPT](https://huggingface.co/Guizmus/SouthParkStyle/resolve/main/SouthParkStyle_v1.ckpt)
30
 
31
  [11GB CKPT with training optimizers](https://huggingface.co/Guizmus/SouthParkStyle/resolve/main/SouthParkStyle_v1_with_optimizers.ckpt)
32
 
33
  [dataset for the first version](https://huggingface.co/Guizmus/SouthParkStyle/resolve/main/dataset.zip)
34
 
35
+ ## 🧨 Diffusers
36
+
37
+ This model can be used just like any other Stable Diffusion model. For more information,
38
+ please have a look at the [Stable Diffusion](https://huggingface.co/docs/diffusers/api/pipelines/stable_diffusion).
39
+
40
+ You can also export the model to [ONNX](https://huggingface.co/docs/diffusers/optimization/onnx), [MPS](https://huggingface.co/docs/diffusers/optimization/mps) and/or [FLAX/JAX]().
41
+
42
+ ```python
43
+ from diffusers import StableDiffusionPipeline
44
+ import torch
45
+
46
+ model_id = "Guizmus/SouthParkStyle"
47
+ pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
48
+ pipe = pipe.to("cuda")
49
+
50
+ prompt = "Yoda SouthPark Style"
51
+ image = pipe(prompt).images[0]
52
+
53
+ image.save("./SouthParkStyle.png")
54
+ ```
55
+
56
  ## License
57
 
58
  This model is open access and available to all, with a CreativeML OpenRAIL-M license further specifying rights and usage.