not-someone commited on
Commit
09b99ce
1 Parent(s): afda0f5

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +67 -0
README.md CHANGED
@@ -1,3 +1,70 @@
1
  ---
 
 
2
  license: other
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ language:
3
+ - en
4
  license: other
5
+ tags:
6
+ - stable-diffusion
7
+ - stable-diffusion-diffusers
8
+ - text-to-image
9
+ - image-to-image
10
+ - diffusers
11
+ - anime
12
+ inference: false
13
  ---
14
+
15
+ # Dreamlike Anime 1.0 is a high quality anime model, made by [dreamlike.art](https://dreamlike.art/).
16
+
17
+ Add **anime** to your prompt to make your gens look more anime.
18
+ Add **photo** to your prompt to make your gens look more photorealistic and have better anatomy.
19
+ This model was trained on 768x768px images, so use 768x768px, 704x832px, 832x704px, etc. Higher resolution or non-square aspect ratios may produce artifacts.
20
+
21
+ ### Examples
22
+
23
+ <img src="https://huggingface.co/dreamlike-art/dreamlike-anime-1.0/resolve/main/preview1.jpg" style="max-width: 800px;" width="100%"/>
24
+ <img src="https://huggingface.co/dreamlike-art/dreamlike-anime-1.0/resolve/main/preview2.jpg" style="max-width: 800px;" width="100%"/>
25
+ <img src="https://huggingface.co/dreamlike-art/dreamlike-anime-1.0/resolve/main/preview3.jpg" style="max-width: 800px;" width="100%"/>
26
+
27
+ ### dreamlike.art
28
+
29
+ You can use this model for free on [dreamlike.art](https://dreamlike.art/)!
30
+
31
+ <img src="https://huggingface.co/dreamlike-art/dreamlike-anime-1.0/resolve/main/dreamlike.jpg" style="max-width: 1000px;" width="100%"/>
32
+
33
+ ### CKPT
34
+
35
+ [Download dreamlike-anime-1.0.ckpt (2.13GB)](https://huggingface.co/dreamlike-art/dreamlike-anime-1.0/resolve/main/dreamlike-anime-1.0.ckpt)
36
+
37
+ ### Safetensors
38
+ [Download dreamlike-anime-1.0.safetensors (2.13GB)](https://huggingface.co/dreamlike-art/dreamlike-anime-1.0/resolve/main/dreamlike-anime-1.0.safetensors)
39
+
40
+ ### 🧨 Diffusers
41
+
42
+ This model can be used just like any other Stable Diffusion model. For more information,
43
+ please have a look at the [Stable Diffusion Pipeline](https://huggingface.co/docs/diffusers/api/pipelines/stable_diffusion).
44
+
45
+ ```python
46
+ from diffusers import StableDiffusionPipeline
47
+ import torch
48
+
49
+ model_id = "dreamlike-art/dreamlike-anime-1.0"
50
+ pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
51
+ pipe = pipe.to("cuda")
52
+
53
+ prompt = "anime, masterpiece, high quality, 1girl, solo, long hair, looking at viewer, blush, smile, bangs, blue eyes, skirt, medium breasts, iridescent, gradient, colorful, besides a cottage, in the country"
54
+ image = pipe(prompt).images[0]
55
+
56
+ image.save("./result.jpg")
57
+ ```
58
+
59
+ <img src="https://huggingface.co/dreamlike-art/dreamlike-anime-1.0/resolve/main/anime.jpg" style="max-width: 640px;" width="100%"/>
60
+
61
+ # License
62
+
63
+ This model is licesed under a **modified** CreativeML OpenRAIL-M license.
64
+
65
+ - **You are not allowed to host, finetune, or do inference with the model or its derivatives on websites/apps/etc. If you want to, please email us at contact@dreamlike.art**
66
+ - **You are free to host the model card and files (Without any actual inference or finetuning) on both commercial and non-commercial websites/apps/etc. Please state the full model name (Dreamlike Anime 1.0) and include the license as well as a link to the model card (https://huggingface.co/dreamlike-art/dreamlike-anime-1.0)**
67
+ - **You are free to use the outputs (images) of the model for commercial purposes in teams of 10 or less**
68
+ - You can't use the model to deliberately produce nor share illegal or harmful outputs or content
69
+ - 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
70
+ - You may re-distribute the weights. 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 **modified** CreativeML OpenRAIL-M to all your users (please read the license entirely and carefully) Please read the full license here: https://huggingface.co/dreamlike-art/dreamlike-anime-1.0/blob/main/LICENSE.md