Views
No views yet
.bin files are raw numeric arrays (uint32 packed nibbles + float16 scales/biases), NOT pickle/safetensors. They are generated by repack_experts.py which reads safetensors and writes raw binary blobs. There is no executable code in any file..bin files as "unsafe" — this is a false positive. These files contain only quantized weight data (4-bit packed integers + float16 scale/bias pairs). No pickle, no Python objects, no executable content.config.json — Model architecture (from mlx-community/Qwen3.5-35B-A3B-4bit)model_weights.bin — Non-expert weights (~1.4 GB, mmap'd at runtime)model_weights.json — Tensor name → offset manifestpacked_experts_tiered/layer_XX.bin — Per-layer expert weights (40 files, ~300 MB each)tokenizer.bin — Pre-exported BPE tokenizertokenizer.json — HuggingFace tokenizer configvocab.bin — Token vocabulary1# Clone and run with Flash-MoE
2git clone https://github.com/Alexintosh/flash-moe
3cd flash-moe/metal_infer && make
4./infer --tiered --model /path/to/this/repo --prompt "Hello" --tokens 100