Upload 5 files
Browse files- README.md +66 -0
- image1.png +0 -0
- image2.png +0 -0
- image3.png +0 -0
- image4.png +0 -0
README.md
CHANGED
@@ -1,3 +1,69 @@
|
|
1 |
---
|
|
|
|
|
2 |
license: creativeml-openrail-m
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
language:
|
3 |
+
- ko
|
4 |
license: creativeml-openrail-m
|
5 |
+
tags:
|
6 |
+
- stable-diffusion
|
7 |
+
- stable-diffusion-diffusers
|
8 |
+
- text-to-image
|
9 |
+
- diffusers
|
10 |
+
- korean
|
11 |
+
inference: true
|
12 |
+
duplicated_from: andite/anything-v4.0
|
13 |
---
|
14 |
+
|
15 |
+
Fantasy.ai is the official and exclusive hosted AI generation platform that holds a commercial use license for Anything V4.0, you can use their service at https://Fantasy.ai/
|
16 |
+
|
17 |
+
# Note
|
18 |
+
- Github: [Korean-stable-diffusion-anything](https://github.com/KyujinHan/KO-stable-diffusion-anything)
|
19 |
+
- We use [bingsu's CLIP](https://huggingface.co/Bingsu/clip-vit-large-patch14-ko)
|
20 |
+
|
21 |
+
## Examples
|
22 |
+

|
23 |
+
**Prompt: 걸작, 최고 품질, 1소녀, 흰 머리, 고양이 귀, 눈을 감고, 보는 사람, 귀여운, 스카프, 재킷, 옥외, 거리**
|
24 |
+
|
25 |
+

|
26 |
+
**Prompt: 풍경, 집, 야외, 하늘, 구름**
|
27 |
+
|
28 |
+

|
29 |
+
**Prompt: 1소년, 잘생긴, 실내, 앉아있는, 커피 숍, 커피 한 잔**
|
30 |
+
|
31 |
+

|
32 |
+
**Prompt: 1소년, 강아지 귀, 귀여운, 흰색 스카프, 눈, 관찰자**
|
33 |
+
|
34 |
+
# Anything V4
|
35 |
+
|
36 |
+
Welcome to Anything V4 - a latent diffusion model for weebs. The newest version of Anything. 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.
|
37 |
+
|
38 |
+
e.g. **_1girl, white hair, golden eyes, beautiful eyes, detail, flower meadow, cumulonimbus clouds, lighting, detailed sky, garden_**
|
39 |
+
|
40 |
+
**Korean ver.**
|
41 |
+
e.g. **_걸작, 최고 품질, 1소녀, 흰 머리, 고양이 귀, 눈을 감고, 보는 사람, 귀여운, 스카프, 재킷, 옥외, 거리_**
|
42 |
+
|
43 |
+
|
44 |
+
## 🧨 Diffusers
|
45 |
+
|
46 |
+
This model can be used just like any other Stable Diffusion model. For more information,
|
47 |
+
please have a look at the [Stable Diffusion](https://huggingface.co/docs/diffusers/api/pipelines/stable_diffusion).
|
48 |
+
|
49 |
+
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]().
|
50 |
+
|
51 |
+
```python
|
52 |
+
from diffusers import StableDiffusionPipeline
|
53 |
+
import torch
|
54 |
+
|
55 |
+
model_id = "kyujinpy/KO-stable-diffusion-anything"
|
56 |
+
pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
|
57 |
+
pipe = pipe.to("cuda")
|
58 |
+
|
59 |
+
prompt = "1소년, 강아지 귀, 귀여운, 흰색 스카프, 눈, 관찰자"
|
60 |
+
image = pipe(prompt).images[0]
|
61 |
+
|
62 |
+
image.save("./hatsune_miku.png")
|
63 |
+
```
|
64 |
+
|
65 |
+
## License
|
66 |
+
|
67 |
+
This model is open access and available to all, with a CreativeML OpenRAIL-M license further specifying rights and usage.
|
68 |
+
The CreativeML OpenRAIL License specifies:
|
69 |
+
[Please read the full license here](https://huggingface.co/spaces/CompVis/stable-diffusion-license)
|
image1.png
ADDED
![]() |
image2.png
ADDED
![]() |
image3.png
ADDED
![]() |
image4.png
ADDED
![]() |