Instructions to use furusu/SSD-1B-anime with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use furusu/SSD-1B-anime 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/SSD-1B-anime", 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 Settings
- Draw Things
- DiffusionBee
Update README.md
Browse files
README.md
CHANGED
|
@@ -10,6 +10,8 @@ tags:
|
|
| 10 |
|
| 11 |
なんだかよさげな雰囲気だがanatomyに問題を抱えている。
|
| 12 |
|
|
|
|
|
|
|
| 13 |
# SSD-1BとSDXLのkey対応について
|
| 14 |
[削除したモジュールがどれか分からないので](https://github.com/segmind/SSD-1B/issues/1)、コサイン類似度を利用して推定しました。
|
| 15 |
Transformer_depthだけ変わっているので(多分)Attention層のパラメータをSDXLとSSD-1B調査しました。
|
|
|
|
| 10 |
|
| 11 |
なんだかよさげな雰囲気だがanatomyに問題を抱えている。
|
| 12 |
|
| 13 |
+
ComfyUI node:https://github.com/laksjdjf/ssd-1b-comfyui
|
| 14 |
+
|
| 15 |
# SSD-1BとSDXLのkey対応について
|
| 16 |
[削除したモジュールがどれか分からないので](https://github.com/segmind/SSD-1B/issues/1)、コサイン類似度を利用して推定しました。
|
| 17 |
Transformer_depthだけ変わっているので(多分)Attention層のパラメータをSDXLとSSD-1B調査しました。
|