| #!/usr/bin/env python3 | |
| """Run the exhaustive MiniMax Music 3 checkpoint audit on CPU only.""" | |
| from __future__ import annotations | |
| import os | |
| os.environ.setdefault("CUDA_VISIBLE_DEVICES", "-1") | |
| from music3lab.checkpoint_audit_cli import main | |
| if __name__ == "__main__": | |
| raise SystemExit(main()) | |