🧠
Model

Qwen3.5 397b A17b 2.592bit

by M I hf-model--m-i--qwen3.5-397b-a17b-2.592bit
Nexus Index
37.0 Top 100%
S: Semantic 50
A: Authority 0
P: Popularity 0
R: Recency 97
Q: Quality 65
Tech Context
397 Params
4.096K Ctx
Vital Performance
0 DL / 30D
0.0%
Audited 37 FNI Score
Massive 397B Params
4k Context
0 Downloads
H100+ ~301GB Est. VRAM
Commercial APACHE License
Model Information Summary
Entity Passport
Registry ID hf-model--m-i--qwen3.5-397b-a17b-2.592bit
License Apache-2.0
Provider huggingface
💾

Compute Threshold

~300.3GB VRAM

Interactive
Analyze Hardware
â–ŧ

* Static estimation for 4-Bit Quantization. [Multi-GPU / Unified Memory Required]

📜

Cite this model

Academic & Research Attribution

BibTeX
@misc{hf_model__m_i__qwen3.5_397b_a17b_2.592bit,
  author = {M I},
  title = {Qwen3.5 397b A17b 2.592bit Model},
  year = {2026},
  howpublished = {\url{https://huggingface.co/m-i/qwen3.5-397b-a17b-2.592bit}},
  note = {Accessed via Free2AITools Knowledge Fortress}
}
APA Style
M I. (2026). Qwen3.5 397b A17b 2.592bit [Model]. Free2AITools. https://huggingface.co/m-i/qwen3.5-397b-a17b-2.592bit

đŸ”ŦTechnical Deep Dive

Full Specifications [+]

Quick Commands

🤗 HF Download
huggingface-cli download m-i/qwen3.5-397b-a17b-2.592bit

âš–ī¸ Nexus Index V2.0

37.0
TOP 100% SYSTEM IMPACT
Semantic (S) 50
Authority (A) 0
Popularity (P) 0
Recency (R) 97
Quality (Q) 65

đŸ’Ŧ Index Insight

FNI V2.0 for Qwen3.5 397b A17b 2.592bit: Semantic (S:50), Authority (A:0), Popularity (P:0), Recency (R:97), Quality (Q:65).

Free2AITools Nexus Index

Verification Authority

Unbiased Data Node Refresh: VFS Live
---

🚀 What's Next?

Technical Deep Dive

m-i/Qwen3.5-397B-A17B-2.592bit

This model was converted to MLX format from Qwen/Qwen3.5-397B-A17B using mlx-vlm version 0.4.4. Refer to the original model card for more details on the model.

Use with mlx

bash
pip install -U mlx-vlm

On Macs with 128GiB of RAM - https://github.com/ml-explore/mlx-lm#large-models :

bash
sudo sysctl iogpu.wired_limit_mb=130000

Also, mlx-vlm supports TurboQuant

bash
# Server with TurboQuant
mlx_vlm server \
  --model  m-i/Qwen3.5-397B-A17B-2.592bit\
  --kv-bits 3.5 \
  --kv-quant-scheme turboquant
bash
python -m mlx_vlm.generate --model m-i/Qwen3.5-397B-A17B-2.592bit --max-tokens 100 --temperature 0.0 --prompt "Describe this image." --image 

Quantization Predicate

Main difference compared to m-i/Qwen3.5-397B-A17B-2.416bit is here the vision is untouched. Some parts have a slightly better quant param.

python
import mlx.core as mx
mx.set_default_device(mx.cpu)
from mlx_vlm import convert

def qwen397b_predicate(path: str, module):
    """
    Multi-bit quantization predicate for Qwen/Qwen3.5-397B-A17B.

    Maps GGUF _exps patterns (MoE experts) to HF switch_mlp paths.
    """
    # ── SKIP: Critical for numerical stability ─────────────────────────────
    if any(kw in path for kw in [
        "layernorm", "mlp.gate.", "shared_expert_gate.",
        "A_log", "dt_bias", "conv1d", ".bias", ".scales",
        "vision",
    ]):
        return False

    # ── 2-bit: MoE routed experts (switch_mlp) ← THIS HANDLES _exps ───────
    # GGUF: ffn_{gate,up,down}_exps.weight → HF: switch_mlp.{gate,up,down}_proj.weight
    if "switch_mlp" in path:
        if any(proj in path for proj in ["gate_proj", "up_proj"]):
            return {"group_size": 128, "bits": 2, "mode": "affine"}  # IQ2_XXS equivalent
        if "down_proj" in path:
            # Optional: use 3-bit for down_proj to mirror IQ2_S > IQ2_XXS
            return {"group_size": 32, "bits": 2, "mode": "affine"}

    # ── 4-bit: Token embeddings ────────────────────────────────────────────
    if "embed_tokens" in path:
        return {"group_size": 32, "bits": 4, "mode": "affine"}

    # ── 5-bit: Shared expert gate/up ───────────────────────────────────────
    if "shared_expert" in path and any(p in path for p in ["gate_proj", "up_proj"]):
        return {"group_size": 128, "bits": 5, "mode": "affine"}

    # ── 6-bit: Shared expert down ──────────────────────────────────────────
    if "shared_expert" in path and "down_proj" in path:
        return {"group_size": 32, "bits": 6, "mode": "affine"}

    # ── 5-bit: Linear/full attention projections ───────────────────────────
    if "linear_attn" in path and any(p in path for p in ["in_proj", "out_proj"]):
        return {"group_size": 128, "bits": 5, "mode": "affine"}
    if "self_attn" in path and any(p in path for p in ["q_proj", "k_proj", "v_proj", "o_proj"]):
        return {"group_size": 128, "bits": 5, "mode": "affine"}

    # ── 6-8-bit: SSM dynamics, lm_head & fallback ─────────────────────────────────────
    if any(kw in path for kw in ["in_proj_a", "in_proj_b", "ssm_alpha", "ssm_beta"]):
        return {"group_size": 32, "bits": 6, "mode": "affine"}
    if "lm_head" in path:
        return {"group_size": 128, "bits": 8, "mode": "affine"}

    return {"group_size": 128, "bits": 6, "mode": "affine"}

repo = "Qwen/Qwen3.5-397B-A17B"
upload_repo = "m-i/Qwen3.5-397B-A17B-2.592bit"

convert(repo, quantize=True, upload_repo=upload_repo, quant_predicate=qwen397b_predicate, )

âš ī¸ Incomplete Data

Some information about this model is not available. Use with Caution - Verify details from the original source before relying on this data.

View Original Source →

📝 Limitations & Considerations

  • â€ĸ Benchmark scores may vary based on evaluation methodology and hardware configuration.
  • â€ĸ VRAM requirements are estimates; actual usage depends on quantization and batch size.
  • â€ĸ FNI scores are relative rankings and may change as new models are added.
  • ⚠ License Unknown: Verify licensing terms before commercial use.
🔄 Daily sync (03:00 UTC)

AI Summary: Based on Hugging Face metadata. Not a recommendation.

📊 FNI Methodology 📚 Knowledge Baseâ„šī¸ Verify with original source

đŸ›Ąī¸ Model Transparency Report

Technical metadata sourced from upstream repositories.

Open Metadata

🆔 Identity & Source

id
hf-model--m-i--qwen3.5-397b-a17b-2.592bit
slug
m-i--qwen3.5-397b-a17b-2.592bit
source
huggingface
author
M I
license
Apache-2.0
tags
mlx, safetensors, qwen3_5_moe, image-text-to-text, conversational, base_model:qwen/qwen3.5-397b-a17b, base_model:quantized:qwen/qwen3.5-397b-a17b, license:apache-2.0, 4-bit, region:us

âš™ī¸ Technical Specs

architecture
null
params billions
397
context length
4,096
pipeline tag
image-text-to-text
vram gb
300.3
vram is estimated
true
vram formula
VRAM ≈ (params * 0.75) + 2GB (KV) + 0.5GB (OS)

📊 Engagement & Metrics

downloads
0
stars
0
forks
0

Data indexed from public sources. Updated daily.