Instructions to use Bluvoll/Anima-v1.0-Base-Diffusers with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use Bluvoll/Anima-v1.0-Base-Diffusers with Diffusers:
pip install -U diffusers transformers accelerate
import torch from diffusers import DiffusionPipeline # switch to "mps" for apple devices pipe = DiffusionPipeline.from_pretrained("Bluvoll/Anima-v1.0-Base-Diffusers", 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
Upload config.json
Browse files- text_conditioner/config.json +14 -0
text_conditioner/config.json
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_class_name": "AnimaTextConditioner",
|
| 3 |
+
"_diffusers_version": "0.40.0.dev0",
|
| 4 |
+
"min_sequence_length": 512,
|
| 5 |
+
"mlp_ratio": 4.0,
|
| 6 |
+
"model_dim": 1024,
|
| 7 |
+
"num_attention_heads": 16,
|
| 8 |
+
"num_layers": 6,
|
| 9 |
+
"source_dim": 1024,
|
| 10 |
+
"target_dim": 1024,
|
| 11 |
+
"target_vocab_size": 32128,
|
| 12 |
+
"use_layer_norm": false,
|
| 13 |
+
"use_self_attention": true
|
| 14 |
+
}
|