Views
No views yet
google/gemma-4-E4B-it 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-gemma4-e4b-instruct |
| Base model | google/gemma-4-E4B-it |
| Model family | gemma4 |
| Thinking mode | off |
| Variant | full-trajectory |
| Hidden encoder | lite |
| Head input mode | completion_text_only |
| Hidden-state layer | last |
| Parameters | 2,863,517 |
| Weight size | 5.50 MiB |
| SHA-256 | 624f4cf4a8df7ca686fbc710dad6262f43c910ed46a7a1a931b7a7357d1fc3aa |
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-gemma4-e4b-instruct",
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}