| 项 / Item | 值 / Value |
|---|---|
| 基座模型 / Base model | Qwen3-4B |
| 导出格式 / Export format | MNN(export_args.json 中 export: "mnn") |
| 推理后端 / Backend | Hexagon cDSP(backend_type: "hexagon",MNN 自研 Hexagon 后端) |
| 权重量化 / Quantization | 4-bit(quant_bit=4, quant_block=64, symmetric) |
| 架构 / Architecture | hidden_size=2560, 36 layers, full attention |
| 精度配置 / Precision | precision: low, memory: low |
| 总大小 / Total size | ~2.0 GB |
⚠️ 中文:这是 MNN 专用格式,不是 Hugging Facetransformers的safetensors/bin格式,无法用AutoModel.from_pretrained直接加载。需使用 MNN-LLM App 或 MNN 推理引擎,并选择hexagon后端。⚠️ English: This is an MNN-specific format, not the Hugging Facetransformerssafetensors/binformat. It cannot be loaded directly withAutoModel.from_pretrained. Use the MNN-LLM app or MNN inference engine with thehexagonbackend.
qwen3_4b_hexagon/
├── llm.mnn # MNN 计算图 / MNN compute graph
├── llm.mnn.weight # 4-bit 量化权重 (2.0 GB) / 4-bit quantized weights
├── llm.mnn.json # 导出配置 / export config
├── config.json # MNN 配置(含 chat template)/ MNN config (with chat template)
├── llm_config.json # MNN-LLM 推理配置(采样参数等)/ MNN-LLM inference config (sampling params)
├── tokenizer.mtok # MNN tokenizer
└── export_args.json # 导出参数记录 / export args recordhexagon,推理将 offload 到 Hexagon cDSP:llm.mnn + llm.mnn.weighttokenizer.mtokllm_config.json⚠️ 本模型针对 MNN 自研 Hexagon cDSP 后端(source/backend/hexagon/,FastRPC + 自研 HVX/HMX kernel)优化,不是 QNN / 高通 AI Engine Direct 路线。若需 QNN HTP 离线模型,另见qwen3-0.6b-mnn-qnn-npu。
hexagon in model settings — inference will be offloaded to the Hexagon cDSP:llm.mnn + llm.mnn.weighttokenizer.mtokllm_config.json⚠️ This model is optimized for the MNN in-house Hexagon cDSP backend (source/backend/hexagon/, FastRPC + custom HVX/HMX kernels). It is not the QNN / Qualcomm AI Engine Direct path. For QNN HTP offline models, seeqwen3-0.6b-mnn-qnn-npu.
quant_bit=4, quant_block=64, sym=truetie_word_embeddings,与 lm_head 共享权重(export_args.json 中 tie_word_embeddings: true)。tie_word_embeddings, sharing weights with lm_head (tie_word_embeddings: true in export_args.json).