Views
No views yet

lemuralabs/DeepSeek-V4-Flash-TQ-Q2.3-MLX is an Apple-Silicon MLX TurboQuant/JANGTQ quantization of deepseek-ai/DeepSeek-V4-Flash.| Property | Value |
|---|---|
| Base model | deepseek-ai/DeepSeek-V4-Flash |
| Architecture | DeepSeek-V4 Flash MoE, 284B total / 13B active, 1M context |
| Local profile | JANGTQ-Q2.3 |
| Bundle size | 88.03 GB |
| Layout | Pre-stacked MLX switch_mlp layout |
| MTP head | Dropped |
| Validation | Safetensors header/index validation, metadata validation |
jangtq_runtime.safetensors from this repository. The sidecar stores the deterministic codebooks and Hadamard rotation signs used to decode the .tq_packed expert weights. If it is missing, re-download the full repository or fetch that file explicitly:hf download lemuralabs/DeepSeek-V4-Flash-TQ-Q2.3-MLX jangtq_runtime.safetensors --local-dir <your-model-dir>| Tensor class | Codec | Bits / handling |
|---|---|---|
| Routed experts | TurboQuant MXTQ | 110 routed layer/projection groups at 2-bit MXTQ and 19 at 4-bit MXTQ |
| Routed effective bits | MXTQ | 2.2946 bits |
| Attention, shared experts, compressor, indexer, embed, lm head | MLX affine | 8-bit, group size 32 |
| Norms, router, mHC, sinks, integer routing tables | passthrough | source precision preserved |
pip install mlx-lm jang-tools1from jang_tools.load_jangtq import load_jangtq_model
2from mlx_lm import generate
3
4model, tokenizer = load_jangtq_model("lemuralabs/DeepSeek-V4-Flash-TQ-Q2.3-MLX")
5prompt = "Write a short note about MLX quantization."
6text = generate(model, tokenizer, prompt=prompt, verbose=True)
7print(text)model-*.safetensors: pre-stacked JANGTQ/MLX shardsmodel.safetensors.index.json: shard indexjangtq_runtime.safetensors: required TurboQuant runtime sidecarconfig.json, jang_config.json: MLX/JANGTQ metadataencoding/: upstream DeepSeek-V4 prompt encoding reference