File size: 2,669 Bytes
941b500
1b7d55f
 
941b500
1b7d55f
 
 
 
 
 
 
 
941b500
1b7d55f
 
 
 
6b3cfb3
9fcda35
1b7d55f
 
 
 
 
 
 
 
 
 
 
 
 
 
a62c2b6
 
1b7d55f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
40fbfb6
1b7d55f
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
---
language:
- ko
license: creativeml-openrail-m
tags:
- stable-diffusion
- stable-diffusion-diffusers
- text-to-image
- diffusers
- korean
inference: true
duplicated_from: andite/anything-v4.0
---

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/

# Note
- Github: [KOrean-stable-diffusion-anything](https://github.com/KyujinHan/KO-stable-diffusion-anything)
- I use [bingsu's CLIP](https://huggingface.co/Bingsu/clip-vit-large-patch14-ko)

## Examples
![](image1.png)
**Prompt: ๊ฑธ์ž‘, ์ตœ๊ณ  ํ’ˆ์งˆ, 1์†Œ๋…€, ํฐ ๋จธ๋ฆฌ, ๊ณ ์–‘์ด ๊ท€, ๋ˆˆ์„ ๊ฐ๊ณ , ๋ณด๋Š” ์‚ฌ๋žŒ, ๊ท€์—ฌ์šด, ์Šค์นดํ”„, ์žฌํ‚ท, ์˜ฅ์™ธ, ๊ฑฐ๋ฆฌ**

![](image2.png)
**Prompt: ํ’๊ฒฝ, ์ง‘, ์•ผ์™ธ, ํ•˜๋Š˜, ๊ตฌ๋ฆ„**

![](image3.png)
**Prompt: 1์†Œ๋…„, ์ž˜์ƒ๊ธด, ์‹ค๋‚ด, ์•‰์•„์žˆ๋Š”, ์ปคํ”ผ ์ˆ, ์ปคํ”ผ ํ•œ ์ž”**

![](image4.png)
**Prompt: 1์†Œ๋…„, ๊ฐ•์•„์ง€ ๊ท€, ๊ท€์—ฌ์šด, ํฐ์ƒ‰ ์Šค์นดํ”„, ๋ˆˆ, ๊ด€์ฐฐ์ž**


# KO-Anything-V4.5

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.

e.g. **_1girl, white hair, golden eyes, beautiful eyes, detail, flower meadow, cumulonimbus clouds, lighting, detailed sky, garden_** 

**Korean ver.** 
e.g. **_๊ฑธ์ž‘, ์ตœ๊ณ  ํ’ˆ์งˆ, 1์†Œ๋…€, ํฐ ๋จธ๋ฆฌ, ๊ณ ์–‘์ด ๊ท€, ๋ˆˆ์„ ๊ฐ๊ณ , ๋ณด๋Š” ์‚ฌ๋žŒ, ๊ท€์—ฌ์šด, ์Šค์นดํ”„, ์žฌํ‚ท, ์˜ฅ์™ธ, ๊ฑฐ๋ฆฌ_**


## ๐Ÿงจ Diffusers

This model can be used just like any other Stable Diffusion model. For more information,
please have a look at the [Stable Diffusion](https://huggingface.co/docs/diffusers/api/pipelines/stable_diffusion).

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]().

```python
from diffusers import StableDiffusionPipeline
import torch

model_id = "kyujinpy/KO-anything-v4.5"
pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
pipe = pipe.to("cuda")

prompt = "1์†Œ๋…„, ๊ฐ•์•„์ง€ ๊ท€, ๊ท€์—ฌ์šด, ํฐ์ƒ‰ ์Šค์นดํ”„, ๋ˆˆ, ๊ด€์ฐฐ์ž"
image = pipe(prompt).images[0]

image.save("./hatsune_miku.png")
```

## License

This model is open access and available to all, with a CreativeML OpenRAIL-M license further specifying rights and usage.
The CreativeML OpenRAIL License specifies: 
[Please read the full license here](https://huggingface.co/spaces/CompVis/stable-diffusion-license)