Views
No views yet
Qwen/Qwen3-VL-4B-Thinking backbone and predicts whether the backbone is adequate for an instance or should route the instance to a stronger model.Multi Head Latent Control capability heads Hugging Face collection. It contains only the lightweight control head; the frozen backbone weights are not duplicated here.| Field | Value |
|---|---|
| Repository | AmirhoseinGH/mhlc-capability-head-qwen3vl-4b-thinking |
| Base model | Qwen/Qwen3-VL-4B-Thinking |
| Model family | qwen3_vl |
| Thinking mode | on |
| Variant | full-trajectory |
| Hidden encoder | strong_single |
| Head input mode | completion_text_only |
| Hidden-state layer | last |
| Parameters | 16,230,683 |
| Weight size | 31.02 MiB |
| SHA-256 | 3d01b3b4f2fa0f48570bfb324105466f15c908c091e6a33504c030bf7a88a467 |
capability_head.pt: PyTorch checkpoint containing head_state and the embedded training cfg.capability_head_config.json: sanitized release and inference metadata.1import torch
2from huggingface_hub import hf_hub_download
3
4checkpoint_path = hf_hub_download(
5 repo_id="AmirhoseinGH/mhlc-capability-head-qwen3vl-4b-thinking",
6 filename="capability_head.pt",
7)
8checkpoint = torch.load(checkpoint_path, map_location="cpu", weights_only=False)
9
10head_config = checkpoint["cfg"]
11head_state_dict = checkpoint["head_state"]
12print(head_config)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.1@misc{ghasemabadi2026multiheadlatentcontrolunified,
2 title={Multi-Head Latent Control: A Unified Interface for LLM Agent Decision Making},
3 author={Amirhosein Ghasemabadi and Ruichen Chen and Bahador Rashidi and Di Niu},
4 year={2026},
5 eprint={2607.14277},
6 archivePrefix={arXiv},
7 primaryClass={cs.CL},
8 url={https://arxiv.org/abs/2607.14277}
9}