MHLC Capability Head - Qwen3-VL-2B-Thinking Prefix-200

Model Description

This repository contains a Capability Head from Multi-Head Latent Control. The head reads generated-token hidden-state trajectories from a frozen Qwen/Qwen3-VL-2B-Thinking backbone and predicts whether the backbone is adequate for an instance or should route the instance to a stronger model.

This repository is part of the Multi Head Latent Control capability heads Hugging Face collection. It contains only the lightweight control head; the frozen backbone weights are not duplicated here.

Paper

https://arxiv.org/abs/2607.14277

Code

https://github.com/Amirhosein-gh98/Multi-Head-Latent-Control

Checkpoint Summary

Field Value
Repository AmirhoseinGH/mhlc-capability-head-qwen3vl-2b-thinking-prefix200
Base model Qwen/Qwen3-VL-2B-Thinking
Model family qwen3_vl
Thinking mode on
Variant prefix-200
Hidden encoder lite
Head input mode completion_first_200
Hidden-state layer last
Parameters 2,764,189
Weight size 5.31 MiB
SHA-256 775be5dcb5d643f0ded2e0920bdc30695fe0dc156b58963e61de398ecde4bac4

Paper Usage

Tables 5-6 prefix-trained capability routing.

Checkpoint selection: Final checkpoint trained with completion_first_200, as referenced by prefix-study jobs and manifests.

Files

  • capability_head.pt: PyTorch checkpoint containing head_state and the embedded training cfg.
  • capability_head_config.json: sanitized release and inference metadata.

Loading the Weights

Use the implementation from the linked code repository. The checkpoint can be downloaded and inspected as follows:

import torch
from huggingface_hub import hf_hub_download

checkpoint_path = hf_hub_download(
    repo_id="AmirhoseinGH/mhlc-capability-head-qwen3vl-2b-thinking-prefix200",
    filename="capability_head.pt",
)
checkpoint = torch.load(checkpoint_path, map_location="cpu", weights_only=False)

head_config = checkpoint["cfg"]
head_state_dict = checkpoint["head_state"]
print(head_config)

For end-to-end routing, pass the downloaded checkpoint to AuxHeadRuntimeConfig.aux_head_ckpt in Eval/multi_agenT_bench_v4/compact_multi_agent_shared_optimized_v4_textbench.py. The base model, thinking mode, hidden encoder, input mode, and hidden-state layer must match this card and capability_head_config.json.

Intended Use

These weights are intended for reproducing and extending the capability-based model-routing experiments in Multi-Head Latent Control. They are not standalone language or vision-language models.

Limitations

The head depends on hidden states produced by the exact compatible backbone and prompting/thinking configuration. A routing threshold should be selected and validated for the target deployment distribution.

Citation

@misc{ghasemabadi2026multiheadlatentcontrolunified,
  title={Multi-Head Latent Control: A Unified Interface for LLM Agent Decision Making},
  author={Amirhosein Ghasemabadi and Ruichen Chen and Bahador Rashidi and Di Niu},
  year={2026},
  eprint={2607.14277},
  archivePrefix={arXiv},
  primaryClass={cs.CL},
  url={https://arxiv.org/abs/2607.14277}
}
Downloads last month

-

Downloads are not tracked for this model. How to track
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for AmirhoseinGH/mhlc-capability-head-qwen3vl-2b-thinking-prefix200

Finetuned
(23)
this model

Collection including AmirhoseinGH/mhlc-capability-head-qwen3vl-2b-thinking-prefix200

Paper for AmirhoseinGH/mhlc-capability-head-qwen3vl-2b-thinking-prefix200