Views
No views yet
mlx_lm and verified serving distributed across a 4-node Apple-Silicon JACCL/RDMA cluster (coherent output, ~29 tok/s decode).mlp.gate and mlp.shared_expert_gate are kept at 8-bit (the quantization map in config.json lists all 60 layers) — MoE routing stability is not degraded. A_log (GatedDeltaNet decay) stays fp32.mlx_lm distributed serving (mlx.launch --backend jaccl); validated 4-node and 2-node.mlx_lm strips the vision tower at load and serves the text language_model (responses carry a separate reasoning field — it's a thinking model).1pip install mlx-lm
2mlx_lm.generate --model mlx-community/Nex-N2-Pro-mlx-8bit \
3 --prompt "Write a Python function to merge two sorted lists." --max-tokens 5121mlx.launch --backend jaccl --hostfile hostfile.json -- \
2 python -m mlx_lm server --model mlx-community/Nex-N2-Pro-mlx-8bit --port 8080| Method | MLX affine (mlx_lm) |
| Bits | 8 |
| Group size | 64 |
| Router / shared-expert gates | kept 8-bit (predicate) |
| Size on disk | ~392 GB (91 shards) |
| Architecture | qwen3_5_moe, 60 layers (45 GatedDeltaNet linear + 15 full-attention), 512 experts, 262K ctx |
nex-agi/Nex-N2-Pro weights. A distillation-aware 4-bit (DWQ) variant is in progress. Apache-2.0, inherited from the base model.