Instructions to use mrfatso/anima-preview3-diffusers with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use mrfatso/anima-preview3-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("mrfatso/anima-preview3-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
File size: 728 Bytes
5b64d79 | 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 | {
"_class_name": "CosmosTransformer3DModel",
"_diffusers_version": "0.39.0.dev0",
"adaln_lora_dim": 256,
"attention_head_dim": 128,
"concat_padding_mask": true,
"controlnet_block_every_n": null,
"crossattn_proj_in_channels": 1024,
"encoder_hidden_states_channels": 1024,
"extra_pos_embed_type": null,
"img_context_dim_in": null,
"img_context_dim_out": 2048,
"img_context_num_tokens": 256,
"in_channels": 16,
"max_size": [
128,
240,
240
],
"mlp_ratio": 4.0,
"num_attention_heads": 16,
"num_layers": 28,
"out_channels": 16,
"patch_size": [
1,
2,
2
],
"rope_scale": [
1.0,
4.0,
4.0
],
"text_embed_dim": 1024,
"use_crossattn_projection": false
}
|