Other
Transformers
Safetensors
ldf_motion
feature-extraction
text-to-motion
motion-generation
diffusion-forcing
humanml3d
computer-animation
custom_code
Instructions to use ShandaAI/FloodDiffusion with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use ShandaAI/FloodDiffusion with Transformers:
# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("ShandaAI/FloodDiffusion", trust_remote_code=True, dtype="auto") - Notebooks
- Google Colab
- Kaggle
File size: 278 Bytes
ebc7f2e | 1 2 3 4 5 6 7 8 9 10 11 12 | """
FloodDiffusion - Text-to-Motion Generation
Usage:
from transformers import AutoModel
model = AutoModel.from_pretrained("your-username/FloodDiffusion", trust_remote_code=True)
motion = model("a person walking forward", length=60)
"""
__version__ = "1.0.0"
|