Updated README
Browse files
README.md
CHANGED
@@ -19,6 +19,19 @@ tags:
|
|
19 |
|
20 |
学習画像はなるべく衣装にバリエーションをもたせているので,「公式衣装」は出にくいです.
|
21 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
## ライセンス
|
23 |
|
24 |
[CreativeML Open RAIL-M license 1.0](https://hf.space/static/bigscience/license/index.html)
|
|
|
19 |
|
20 |
学習画像はなるべく衣装にバリエーションをもたせているので,「公式衣装」は出にくいです.
|
21 |
|
22 |
+
## ファイル形式
|
23 |
+
|
24 |
+
1. [AUTOMATIC1111/stable-diffusion-webui](https://github.com/AUTOMATIC1111/stable-diffusion-webui)などclptファイルを読み込むツールの場合
|
25 |
+
|
26 |
+
[sd-tohoku-v1.model.ckpt](https://huggingface.co/shirayu/sd-tohoku-v1/resolve/main/sd-tohoku-v1.model.ckpt)(約2GB)をダウンロードして読み込んでください
|
27 |
+
|
28 |
+
2. [diffusers](https://github.com/huggingface/diffusers)から利用する場合
|
29 |
+
|
30 |
+
```python
|
31 |
+
from diffusers import DiffusionPipeline
|
32 |
+
pipeline = DiffusionPipeline.from_pretrained("shirayu/sd-tohoku-v1")
|
33 |
+
```
|
34 |
+
|
35 |
## ライセンス
|
36 |
|
37 |
[CreativeML Open RAIL-M license 1.0](https://hf.space/static/bigscience/license/index.html)
|