Instructions to use fukujusou/Anima-mlx with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- MLX
How to use fukujusou/Anima-mlx with MLX:
# Download the model from the Hub pip install huggingface_hub[hf_xet] huggingface-cli download --local-dir Anima-mlx fukujusou/Anima-mlx
- Diffusion Single File
How to use fukujusou/Anima-mlx with Diffusion Single File:
# 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 Settings
- LM Studio
| """Anima MLX conversion contract package.""" | |
| from .config import ( | |
| DEFAULT_SOURCE_CONTRACT, | |
| DiffusionContract, | |
| SafetensorsArtifact, | |
| SourceContract, | |
| TextEncoderContract, | |
| VAEContract, | |
| ) | |
| __all__ = [ | |
| "DEFAULT_SOURCE_CONTRACT", | |
| "DiffusionContract", | |
| "SafetensorsArtifact", | |
| "SourceContract", | |
| "TextEncoderContract", | |
| "VAEContract", | |
| ] | |