This repository contains an
FP16 safetensors version of the fine-tuned MMAudio model from
cloud19/NSFW_MMaudio, optimized for improved memory efficiency and faster loading times.
This model can be used as a drop-in replacement for the original model. Load the safetensors file instead of the original PyTorch checkpoint:
1from safetensors.torch import load_file
2
3# Load the FP16 model weights
4model_weights = load_file("model_fp16.safetensors")
5
6# Load into your MMAudio model architecture
7# (follow the same usage pattern as the base model)
For usage instructions, please refer to the
base model repository and simply replace the model loading with the FP16 safetensors version.
Base Model: cloud19/NSFW_MMaudio
Original MMAudio: hkchengrex/MMAudio
Optimization: FP16 conversion for improved efficiency
All credit for the original architecture, fine-tuning, and model development goes to the respective authors. This repository only provides format optimization.
1@inproceedings{cheng2025taming,
2 title={{MMAudio}: Taming Multimodal Joint Training for High-Quality Video-to-Audio Synthesis},
3 author={Cheng, Ho Kei and Ishii, Masato and Hayakawa, Akio and Shibuya, Takashi and Schwing, Alexander and Mitsufuji, Yuki},
4 booktitle={CVPR},
5 year={2025}
6}