Guizmus commited on
Commit
4410892
1 Parent(s): feb7533

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +53 -0
README.md CHANGED
@@ -1,3 +1,56 @@
1
  ---
 
 
2
  license: creativeml-openrail-m
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - en
4
  license: creativeml-openrail-m
5
+ tags:
6
+ - stable-diffusion
7
+ - text-to-image
8
+ - image-to-image
9
+ library_name: "https://github.com/victorchall/EveryDream-trainer"
10
+ datasets:
11
+ - Guizmus/AnimeChanStyle
12
  ---
13
+
14
+ # AnimeChan Style
15
+ <p>
16
+ This model was based on <a href="https://huggingface.co/naclbit/trinart_stable_diffusion_v2">Trinart</a> model.<br/>
17
+ The dataset was a collaborative effort of the Stable Diffusion #anime channel, made of pictures from the users themselves using their different techniques.<br/>
18
+ This was trained using EveryDream with a full caption of all training pictures. The dataset can be found <a href="">here</a>.<br/>
19
+ <br/>
20
+ The style will be called by the use of the token <b>AnimeChan Style</b>.<br/>
21
+ <br/>
22
+ To access this model, you can download the CKPT file below, or use the <a href="https://huggingface.co/Guizmus/AnimeChanStyle/tree/main">diffusers</a>
23
+ </p>
24
+
25
+ [CKPT download link](https://huggingface.co/Guizmus/AnimeChanStyle/resolve/main/AnimeChanStyle_v1.ckpt)
26
+
27
+ ## 🧨 Diffusers
28
+
29
+ This model can be used just like any other Stable Diffusion model. For more information,
30
+ please have a look at the [Stable Diffusion](https://huggingface.co/docs/diffusers/api/pipelines/stable_diffusion).
31
+
32
+ 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]().
33
+
34
+ ```python
35
+ from diffusers import StableDiffusionPipeline
36
+ import torch
37
+
38
+ model_id = "Guizmus/AnimeChanStyle"
39
+ pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
40
+ pipe = pipe.to("cuda")
41
+
42
+ prompt = "A beautiful slime girl, AnimeChan Style"
43
+ image = pipe(prompt).images[0]
44
+
45
+ image.save("./AnimeChanStyle.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
+
53
+ 1. You can't use the model to deliberately produce nor share illegal or harmful outputs or content
54
+ 2. The authors claims no rights on the outputs you generate, you are free to use them and are accountable for their use which must not go against the provisions set in the license
55
+ 3. You may re-distribute the weights and use the model commercially and/or as a service. If you do, please be aware you have to include the same use restrictions as the ones in the license and share a copy of the CreativeML OpenRAIL-M to all your users (please read the license entirely and carefully)
56
+ [Please read the full license here](https://huggingface.co/spaces/CompVis/stable-diffusion-license)