Views
No views yet
.bpk) archive. The repository also includes Rust tooling to regenerate the raw export manifest and Burn pack from the upstream checkpoint.heartmula.bpktokenizer.jsongen_config.jsonconvert.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 packerheartmula/manifest.json contains 289 tensors.heartmula.bpk: 15,752,483,328 bytestokenizer.json: 9,085,657 bytesgen_config.json: 101 bytes1CKPT_ROOT/
2├── HeartMuLa-oss-3B/
3├── tokenizer.json
4└── gen_config.jsontokenizer.json and gen_config.json 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 --local-dir CKPT_ROOT/HeartMuLa-oss-3B
2huggingface-cli download HeartMuLa/HeartMuLa-oss-3B tokenizer.json --local-dir CKPT_ROOT
3huggingface-cli download HeartMuLa/HeartMuLa-oss-3B gen_config.json --local-dir CKPT_ROOT1cargo run --release --bin export_heartmula_raw -- \
2 --checkpoint-root CKPT_ROOT \
3 --heartmula-subdir HeartMuLa-oss-3B \
4 --output-root artifacts/heartmula-oss-3bartifacts/heartmula-oss-3b/heartmula_raw_f32/artifacts/heartmula-oss-3b/tokenizer.jsonartifacts/heartmula-oss-3b/gen_config.json.npy tensor files and a manifest.json..bpk archive:1cargo run --release --bin heartmula-burn -- \
2 --manifest artifacts/heartmula-oss-3b/heartmula_raw_f32/manifest.json \
3 --output artifacts/heartmula-oss-3b/heartmula.bpk.gitattributes is part of the expected publishable layout.