Instructions to use furusu/th-diffusion with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use furusu/th-diffusion with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("furusu/th-diffusion", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Notebooks
- Google Colab
- Kaggle
- Local Apps
- Draw Things
- DiffusionBee
Update README.md
Browse files
README.md
CHANGED
|
@@ -26,6 +26,8 @@ tags:
|
|
| 26 |
2.3.は[WD1-4のタグ付け規則](https://gist.github.com/harubaru/313eec09026bb4090f4939d01f79a7e7)に従っています。
|
| 27 |
そのため機能するプロンプトやネガティブプロンプトはWD1-4と変わりません。
|
| 28 |
|
|
|
|
|
|
|
| 29 |
# 生成例
|
| 30 |
てきとう、ネガティブプロンプトはworst quality, low quality, medium quality, deleted, lowres, comic, bad anatomy, bad hands, text, error, missing fingers, extra digit, fewer digits, cropped, jpeg artifacts, signature, watermark, username, blurry
|
| 31 |
|
|
|
|
| 26 |
2.3.は[WD1-4のタグ付け規則](https://gist.github.com/harubaru/313eec09026bb4090f4939d01f79a7e7)に従っています。
|
| 27 |
そのため機能するプロンプトやネガティブプロンプトはWD1-4と変わりません。
|
| 28 |
|
| 29 |
+
右にある変な奴で試せますが、ネガティブプロンプトがないのであんまりいい画像はでないよ。
|
| 30 |
+
|
| 31 |
# 生成例
|
| 32 |
てきとう、ネガティブプロンプトはworst quality, low quality, medium quality, deleted, lowres, comic, bad anatomy, bad hands, text, error, missing fingers, extra digit, fewer digits, cropped, jpeg artifacts, signature, watermark, username, blurry
|
| 33 |
|