Views
No views yet
.bpk) archives. The repository also includes Rust tooling to regenerate the raw export manifest and Burn pack from the upstream checkpoint.heartmula.bpktokenizer.jsongen_config.jsonconfig.jsonLICENSEconvert.sh: one-step export-and-pack script that writes heartmula.bpk at the repository rootsrc/bin/export_heartmula_raw.rs: exports the upstream safetensors checkpoint into .npy tensors plus a manifest filesrc/main.rs: packs exported tensors into Burn Pack archivesCargo.toml, Cargo.lock: Rust dependencies for the packerUPLOAD_GUIDE.md: publishing notes for Hugging Face model hostingheartmula/manifest.json contains 289 tensors.heartmula.bpk: 15,752,483,328 bytestokenizer.json: 9,085,657 bytesgen_config.json: 101 bytesconfig.json: 1,537 bytes1CKPT_ROOT/
2├── HeartMuLa-oss-3B-happy-new-year/
3├── LICENSE
4├── tokenizer.json
5└── gen_config.jsontokenizer.json, gen_config.json, and LICENSE into the output artifact directory../convert.sh CKPT_ROOTheartmula.bpk at the repository root and removes the temporary artifact directory when finished.1huggingface-cli download HeartMuLa/HeartMuLa-oss-3B-happy-new-year --local-dir CKPT_ROOT/HeartMuLa-oss-3B-happy-new-year
2huggingface-cli download HeartMuLa/HeartMuLa-oss-3B-happy-new-year tokenizer.json --local-dir CKPT_ROOT
3huggingface-cli download HeartMuLa/HeartMuLa-oss-3B-happy-new-year gen_config.json --local-dir CKPT_ROOT1cargo run --release --bin export_heartmula_raw -- \
2 --checkpoint-root CKPT_ROOT \
3 --heartmula-subdir HeartMuLa-oss-3B-happy-new-year \
4 --output-root artifacts/heartmula-happy-new-year-20260123artifacts/heartmula-happy-new-year-20260123/heartmula_raw_f32/artifacts/heartmula-happy-new-year-20260123/tokenizer.jsonartifacts/heartmula-happy-new-year-20260123/gen_config.jsonartifacts/heartmula-happy-new-year-20260123/LICENSE.npy tensor files and a manifest.json..bpk archive:1cargo run --release --bin heartmula-burn -- \
2 --manifest artifacts/heartmula-happy-new-year-20260123/heartmula_raw_f32/manifest.json \
3 --output artifacts/heartmula-happy-new-year-20260123/heartmula.bpkartifacts/heartmula-happy-new-year-20260123/heartmula.bpk -> heartmula.bpkartifacts/heartmula-happy-new-year-20260123/heartmula_raw_f32/manifest.json -> heartmula/manifest.jsonartifacts/heartmula-happy-new-year-20260123/tokenizer.json -> tokenizer.jsonartifacts/heartmula-happy-new-year-20260123/gen_config.json -> gen_config.jsonartifacts/heartmula-happy-new-year-20260123/LICENSE -> LICENSE.gitattributes is part of the expected publishable layout.config.json contains conversion metadata and architecture summary for the published package.