smelon commited on
Commit
4b05e26
·
1 Parent(s): 2f4f446

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +81 -6
README.md CHANGED
@@ -1,6 +1,81 @@
1
- <p class="STYLE1"><a href="http://smelon.com">Smelon.com</a>资料备份<br />
2
- anything模型来自<a href="https://huggingface.co/Linaqruf/anything-v3.0" target="_blank">https://huggingface.co/Linaqruf/anything-v3.0</a><br />
3
- 欢迎来到 Anything V3 - 一个用于 weebs 的潜在扩散模型。该模型旨在通过几个提示来制作高质量、高度详细的动漫风格。与其他动漫风格的稳定扩散模型一样,它也支持danbooru标签来生成图像。<br />
4
- </p>
5
- <p class="STYLE1">例如1girl, white hair, golden eyes, beautiful eyes, detail, flower meadow, cumulonimbus clouds, lighting, detailed sky, garden<br />
6
- </p>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ # Anything V3
14
+
15
+ Welcome to Anything V3 - a latent diffusion model for weebs. This model is intended to produce high-quality, highly detailed anime style with just a few prompts. Like other anime-style Stable Diffusion models, it also supports danbooru tags to generate images.
16
+
17
+ e.g. **_1girl, white hair, golden eyes, beautiful eyes, detail, flower meadow, cumulonimbus clouds, lighting, detailed sky, garden_**
18
+
19
+ ## Gradio
20
+
21
+ We support a [Gradio](https://github.com/gradio-app/gradio) Web UI to run Anything-V3.0:
22
+
23
+ [Open in Spaces](https://huggingface.co/spaces/akhaliq/anything-v3.0)
24
+
25
+
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 = "Linaqruf/anything-v3.0"
39
+ branch_name= "diffusers"
40
+
41
+ pipe = StableDiffusionPipeline.from_pretrained(model_id, revision=branch_name, torch_dtype=torch.float16)
42
+ pipe = pipe.to("cuda")
43
+
44
+ prompt = "pikachu"
45
+ image = pipe(prompt).images[0]
46
+
47
+ image.save("./pikachu.png")
48
+ ```
49
+
50
+ ## Examples
51
+
52
+ Below are some examples of images generated using this model:
53
+
54
+ **Anime Girl:**
55
+ ![Anime Girl](https://huggingface.co/Linaqruf/anything-v3.0/resolve/main/1girl.png)
56
+ ```
57
+ 1girl, brown hair, green eyes, colorful, autumn, cumulonimbus clouds, lighting, blue sky, falling leaves, garden
58
+ Steps: 50, Sampler: DDIM, CFG scale: 12
59
+ ```
60
+ **Anime Boy:**
61
+ ![Anime Boy](https://huggingface.co/Linaqruf/anything-v3.0/resolve/main/1boy.png)
62
+ ```
63
+ 1boy, medium hair, blonde hair, blue eyes, bishounen, colorful, autumn, cumulonimbus clouds, lighting, blue sky, falling leaves, garden
64
+ Steps: 50, Sampler: DDIM, CFG scale: 12
65
+ ```
66
+ **Scenery:**
67
+ ![Scenery](https://huggingface.co/Linaqruf/anything-v3.0/resolve/main/scenery.png)
68
+ ```
69
+ scenery, shibuya tokyo, post-apocalypse, ruins, rust, sky, skyscraper, abandoned, blue sky, broken window, building, cloud, crane machine, outdoors, overgrown, pillar, sunset
70
+ Steps: 50, Sampler: DDIM, CFG scale: 12
71
+ ```
72
+
73
+ ## License
74
+
75
+ This model is open access and available to all, with a CreativeML OpenRAIL-M license further specifying rights and usage.
76
+ The CreativeML OpenRAIL License specifies:
77
+
78
+ 1. You can't use the model to deliberately produce nor share illegal or harmful outputs or content
79
+ 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
80
+ 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)
81
+ [Please read the full license here](https://huggingface.co/spaces/CompVis/stable-diffusion-license)