File size: 4,071 Bytes
6370275
 
c0055c2
 
 
 
 
 
 
 
 
 
 
6370275
c0055c2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
---
license: creativeml-openrail-m

language:
- ja

tags:
- stable-diffusion
- text-to-image
- art

library_name: diffusers

---
# ◆REV-Mix

![](Images/logo.png)
- "レボリューション"なモデルです。
- DateMixやRDtMixを意識して作成しました。

----

# ◆Discord

[Join Discord Server](https://discord.gg/eN6aSWRddT)
- Hemlokのマージコミュニティです。レシピとか裏話はこちら。

----

# ◆モデル概要

## ■REV-I
- Sampler: DDIM or DPM++ SDE Karras 推奨。
- Steps: 40~
- Clipskip: 2
- CFG Scale: 5~8
- Denoise strength: 0.6
- クオリティタグ(masterpiece,best quality等)は入れなくても大丈夫です。お好みでどうぞ。
- 別途embeddingsをおすすめします。
- ◆アニメ系モデル。通常はこちら。

## ■REV-R
- Sampler: DDIM or DPM++ SDE Karras 推奨。
- Steps: 40~
- Clipskip: 2
- CFG Scale: 5~8
- Denoise strength: 0.6
- クオリティタグ(masterpiece,best quality等)は入れなくても大丈夫です。お好みでどうぞ。
- 別途embeddingsをおすすめします。
- ◆リアル系モデル。リアルモデルの比率を大幅に上げています。

----

# ◆サンプル
## ■REV-I
![](Images/1-1.png)

## ■REV-R
![](Images/1-2.png)

- Prompt:
```
cowboy shot, long {white|blonde|black} hair, glossy, realistic textures, kawaii, (Gothic Lolita dress), Gorgeous Clothing, clothes that reveal little, [cute smile], in room, 
```

---
## ■REV-I
![](Images/2-1.png)

## ■REV-R
![](Images/2-2.png)

- Prompt:
```
(cowboy shot), (dynamic angle), Ruffled Dresses, (The great hall of the mansion), tiara, Luxurious interior, looking at viewer,
```

---

## ■REV-I
![](Images/3-1.png)

## ■REV-R
![](Images/3-2.png)

- Prompt:
```
(cowboy shot), looking at viewer, 1girl, Pirate, globe, starry eyed, ✌, ;), Revolution, gorgeous
```

---

# ◆モデルの使い方

- モデルをダウンロードしてWebUI等でご使用ください。
- モデルはModelsフォルダの中にあります。

---

## 🧨Diffusers

- Diffusersを使用する際は以下のコードを利用してください。
```python
from diffusers import StableDiffusionPipeline
import torch
model_id = "Hemlok/REV-Mix"
pipe = StableDiffusionPipeline.from_pretrained(model_id, torch_dtype=torch.float16)
pipe = pipe.to("cuda")
prompt = "One girl standing by the window"
image = pipe(prompt).images[0]  
    
image.save("test.png")
```

----

# 免責事項

- SFWおよびNSFW画像の作成は、個々のクリエイターの判断によります。モデル製作者は責任を負いません。
- このモデルは、公共の場などでNSFWコンテンツを公開するために作られたモデルではありません。

----

# ライセンス

- このモデルはオープンアクセスで誰でも利用可能であり、CreativeML OpenRAIL-Mライセンスでさらに権利と使用方法が規定されています。
- CreativeML OpenRAILライセンスでは、次のように規定されています。
1. このモデルを使用して、違法または有害な出力やコンテンツを意図的に作成したり、共有したりすることはできません。
2. 作者はあなたが生成した出力に対していかなる権利も主張しません。あなたはそれらを自由に使用することができますが、ライセンスで定められた規定を守ってください。利用は自己責任でお願いします。
3. あなたはウェイトを再配布し、モデルを商業的またはサービスとして使用することができます。その場合、ライセンスにあるものと同じ使用制限を含め、CreativeML OpenRAIL-Mのコピーをあなたのすべてのユーザーに共有しなければならないことに注意してください(ライセンスを完全にかつ注意深く読んでください)。
- (ライセンスの全文: [https://huggingface.co/spaces/CompVis/stable-diffusion-license](https://huggingface.co/spaces/CompVis/stable-diffusion-license))