Instructions to use WaveCut/Anima-Preview-3-SDNQ-int8-diffusers with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Diffusers
How to use WaveCut/Anima-Preview-3-SDNQ-int8-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("WaveCut/Anima-Preview-3-SDNQ-int8-diffusers", dtype=torch.bfloat16, device_map="cuda") prompt = "Astronaut in a jungle, cold color palette, muted colors, detailed, 8k" image = pipe(prompt).images[0] - Cosmos
How to use WaveCut/Anima-Preview-3-SDNQ-int8-diffusers with Cosmos:
# No code snippets available yet for this library. # To use this model, check the repository files and the library's documentation. # Want to help? PRs adding snippets are welcome at: # https://github.com/huggingface/huggingface.js
- Notebooks
- Google Colab
- Kaggle
- Local Apps
- Draw Things
- DiffusionBee
Show sample images in model card
Browse files
README.md
CHANGED
|
@@ -75,6 +75,26 @@ worst quality, low quality, score_1, score_2, score_3, artist name
|
|
| 75 |
|
| 76 |
Use lowercase tags with spaces instead of underscores, except score tags such as `score_7`. For artist tags, prefix the artist with `@`.
|
| 77 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 78 |
## Notes
|
| 79 |
|
| 80 |
The original Anima split checkpoint is a ComfyUI-native model with a Qwen3 text encoder and a learned LLM adapter. Earlier transformer-only exports that load the checkpoint directly as `CosmosTransformer3DModel` ignore the `llm_adapter.*` weights; this repo keeps the adapter and full pipeline structure so generation follows the Anima architecture.
|
|
|
|
| 75 |
|
| 76 |
Use lowercase tags with spaces instead of underscores, except score tags such as `score_7`. For artist tags, prefix the artist with `@`.
|
| 77 |
|
| 78 |
+
|
| 79 |
+
## Sample Output
|
| 80 |
+
|
| 81 |
+
Comparison generated from the public Diffusers checkpoints:
|
| 82 |
+
|
| 83 |
+

|
| 84 |
+
|
| 85 |
+
This checkpoint sample:
|
| 86 |
+
|
| 87 |
+

|
| 88 |
+
|
| 89 |
+
Generation settings:
|
| 90 |
+
|
| 91 |
+
- Prompt: `masterpiece, best quality, score_7, safe, 1girl, fern (sousou no frieren), purple hair, purple eyes, black robe, white dress, butterfly on hand, simple background, looking at viewer`
|
| 92 |
+
- Negative prompt: `worst quality, low quality, score_1, score_2, score_3, blurry, jpeg artifacts, artist name`
|
| 93 |
+
- Seed: `424242`
|
| 94 |
+
- Size: `768x768`
|
| 95 |
+
- Steps: `24`
|
| 96 |
+
- CFG: `4.0`
|
| 97 |
+
|
| 98 |
## Notes
|
| 99 |
|
| 100 |
The original Anima split checkpoint is a ComfyUI-native model with a Qwen3 text encoder and a learned LLM adapter. Earlier transformer-only exports that load the checkpoint directly as `CosmosTransformer3DModel` ignore the `llm_adapter.*` weights; this repo keeps the adapter and full pipeline structure so generation follows the Anima architecture.
|