Text Generation
Transformers
Safetensors
English
matriochka
matryoshka
nested-models
speculative-decoding
model-suite
distillation
custom_code
Instructions to use nthngdy/matryoshka-3B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use nthngdy/matryoshka-3B with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="nthngdy/matryoshka-3B", trust_remote_code=True)# Load model directly from transformers import AutoModelForCausalLM model = AutoModelForCausalLM.from_pretrained("nthngdy/matryoshka-3B", trust_remote_code=True, device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use nthngdy/matryoshka-3B with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "nthngdy/matryoshka-3B" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "nthngdy/matryoshka-3B", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/nthngdy/matryoshka-3B
- SGLang
How to use nthngdy/matryoshka-3B with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "nthngdy/matryoshka-3B" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "nthngdy/matryoshka-3B", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "nthngdy/matryoshka-3B" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "nthngdy/matryoshka-3B", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use nthngdy/matryoshka-3B with Docker Model Runner:
docker model run hf.co/nthngdy/matryoshka-3B
File size: 13,161 Bytes
8186db9 8e48897 8186db9 8e48897 8186db9 8e48897 8186db9 8e48897 8186db9 8e48897 8186db9 8e48897 8186db9 8e48897 003b138 8186db9 8e48897 8186db9 8e48897 8186db9 058170e 8186db9 003b138 8186db9 8e48897 8186db9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 | """
modeling_matriochka.py β Matriochka Stacked LLM
================================================
Custom HuggingFace model file enabling `trust_remote_code=True` loading.
The architecture is a nested cascade: sub-model i feeds its last hidden states
into sub-model i+1 as part of its input embeddings. This means sub-model i+1
REQUIRES sub-model i to have run first β they cannot be used in isolation.
Each branch therefore contains the FULL CASCADE up to and including that size:
revision="300M" β MatriochkaForCausalLM with sub-models [100M, 300M]
revision="600M" β MatriochkaForCausalLM with sub-models [100M, 300M, 600M]
revision="main" β MatriochkaForCausalLM with all sub-models
Usage
-----
# Load the 300M cascade (downloads only 100M + 300M weights)
model = AutoModelForCausalLM.from_pretrained(
"your-org/matriochka-lm",
revision="300M",
trust_remote_code=True,
)
out = model(input_ids) # .logits shape: [B, T, vocab]
# Load the full stack
model = AutoModelForCausalLM.from_pretrained(
"your-org/matriochka-lm",
trust_remote_code=True,
)
See upload_to_hub() at the bottom for the upload workflow.
"""
from __future__ import annotations
from typing import Dict, List, Optional, Tuple
import torch
import torch.nn as nn
from transformers import (
AutoConfig,
AutoModelForCausalLM,
LlamaConfig,
LlamaForCausalLM,
PretrainedConfig,
PreTrainedModel,
)
from transformers.modeling_outputs import CausalLMOutputWithPast
# ---------------------------------------------------------------------------
# Config
# ---------------------------------------------------------------------------
class MatriochkaConfig(PretrainedConfig):
"""
Config for a Matriochka cascade (any prefix of the full stack).
`sub_model_configs` : list of LlamaConfig kwargs, one per sub-model in this cascade.
`sub_model_tags` : matching human-readable labels, e.g. ["100M", "300M"].
embed_tokens width per sub-model:
index 0 β own_hidden (standard embedding)
index i β own_hidden_i - own_hidden_{i-1} (narrowed so that
cat([prev_hs, embed_out]) == own_hidden_i exactly)
"""
model_type = "matriochka"
def __init__(
self,
sub_model_configs: Optional[List[dict]] = None, # noqa: keep distinct from HF sub-config scanning
sub_model_tags: Optional[List[str]] = None,
vocab_size: int = 49152,
bos_token_id: int = 1,
eos_token_id: int = 2,
junction_type: str = "norm",
**kwargs,
):
super().__init__(bos_token_id=bos_token_id, eos_token_id=eos_token_id, **kwargs)
self.sub_model_configs = sub_model_configs or []
self.sub_model_tags = sub_model_tags or []
self.vocab_size = vocab_size
self.junction_type = junction_type
@classmethod
def from_shape_list(
cls,
shapes: List[Tuple[int, int, int]],
tags: List[str],
base_model_id: str = "HuggingFaceTB/SmolLM2-135M",
**kwargs,
) -> "MatriochkaConfig":
"""
shapes : list of (num_layers, num_heads, head_dim)
tags : matching size labels, e.g. ["100M","300M","600M","1B"]
"""
base = AutoConfig.from_pretrained(base_model_id)
sub_configs = []
for (layers, heads, head_dim) in shapes:
hidden = heads * head_dim
sub_configs.append({
"num_hidden_layers": layers,
"num_attention_heads": heads,
"num_key_value_heads": heads,
"head_dim": head_dim,
"hidden_size": hidden,
"intermediate_size": 4 * hidden,
"vocab_size": base.vocab_size,
"max_position_embeddings": base.max_position_embeddings,
"rope_theta": getattr(base, "rope_theta", 100000.0),
"rms_norm_eps": base.rms_norm_eps,
"tie_word_embeddings": False,
})
return cls(
sub_model_configs=sub_configs,
sub_model_tags=tags,
vocab_size=base.vocab_size,
bos_token_id=base.bos_token_id,
eos_token_id=base.eos_token_id,
**kwargs,
)
def truncated(self, tag: str) -> "MatriochkaConfig":
"""Return a new config containing only sub-models up to and including `tag`."""
idx = self.sub_model_tags.index(tag)
return MatriochkaConfig(
sub_model_configs=self.sub_model_configs[: idx + 1],
sub_model_tags=self.sub_model_tags[: idx + 1],
vocab_size=self.vocab_size,
bos_token_id=self.bos_token_id,
eos_token_id=self.eos_token_id,
junction_type=self.junction_type,
)
# ---------------------------------------------------------------------------
# Internal sub-model wrapper (not registered with AutoModel)
# ---------------------------------------------------------------------------
class _MatriochkaSubModel(nn.Module):
"""
Wraps a single LlamaForCausalLM inside the cascade.
embed_tokens width:
index 0 β own_hidden (normal)
index i β own_hidden - prev_hidden (narrowed; concat restores own_hidden)
prev_hidden_size=None signals index 0 (no predecessor).
"""
def __init__(self, llama_cfg: LlamaConfig, prev_hidden_size: Optional[int], junction_type: str = "norm"):
super().__init__()
self.prev_hidden_size = prev_hidden_size
self.junction_type = junction_type
self.backbone = LlamaForCausalLM(llama_cfg)
if prev_hidden_size is not None:
own_hidden = llama_cfg.hidden_size
embed_dim = own_hidden - prev_hidden_size
assert embed_dim > 0, (
f"own_hidden ({own_hidden}) must be > prev_hidden ({prev_hidden_size})"
)
self.backbone.model.embed_tokens = nn.Embedding(
llama_cfg.vocab_size, embed_dim
)
def forward(
self,
input_ids: torch.LongTensor,
attention_mask: Optional[torch.Tensor],
prev_hidden_states: Optional[torch.Tensor],
labels: Optional[torch.LongTensor],
output_hidden_states: bool,
return_dict: bool,
**kwargs,
):
# embed_tokens produces (own - prev) dims, or own dims for index 0
inputs_embeds = self.backbone.get_input_embeddings()(input_ids)
if self.junction_type == "zero" and self.prev_hidden_size is not None:
inputs_embeds = 0 * inputs_embeds
if self.prev_hidden_size is not None and prev_hidden_states is not None:
# Combine prev_hs with own embedding; result width: own_hidden.
if self.junction_type == "norm":
factor = (
inputs_embeds.pow(2).mean(-1, keepdim=True).sqrt()
/ (1e-9 + prev_hidden_states.pow(2).mean(-1, keepdim=True).sqrt())
)
else:
factor = 1.0
inputs_embeds = torch.cat([prev_hidden_states * factor, inputs_embeds], dim=-1)
return self.backbone(
inputs_embeds=inputs_embeds,
attention_mask=attention_mask,
labels=labels,
output_hidden_states=output_hidden_states,
return_dict=return_dict,
**kwargs,
)
# ---------------------------------------------------------------------------
# Main model
# ---------------------------------------------------------------------------
class MatriochkaForCausalLM(PreTrainedModel):
"""
Matriochka cascade of LLMs.
forward() runs the full cascade and returns the last sub-model's
CausalLMOutputWithPast, so .logits / .loss work directly and the model
is compatible with lm-eval and standard HF inference pipelines.
forward_all() returns a dict[tag β CausalLMOutputWithPast] for all
sub-models, useful when computing per-sub-model losses.
"""
config_class = MatriochkaConfig
base_model_prefix = "lm_model_dict"
_supports_flash_attn = True
_supports_sdpa = True
_supports_flex_attn = True
_can_compile_fullgraph = True
_supports_attention_backend = True
def __init__(self, config: MatriochkaConfig):
super().__init__(config)
self.lm_model_dict = nn.ModuleDict()
prev_hidden: Optional[int] = None
for tag, sub_cfg_dict in zip(config.sub_model_tags, config.sub_model_configs):
llama_cfg = LlamaConfig(**sub_cfg_dict)
self.lm_model_dict[tag] = _MatriochkaSubModel(llama_cfg, prev_hidden, config.junction_type)
prev_hidden = sub_cfg_dict["hidden_size"]
self.post_init()
def forward(
self,
input_ids: Optional[torch.LongTensor] = None,
attention_mask: Optional[torch.Tensor] = None,
labels: Optional[torch.LongTensor] = None,
output_hidden_states: bool = True,
return_dict: bool = True,
**kwargs,
) -> CausalLMOutputWithPast:
"""
Run the full cascade. Returns the last sub-model's CausalLMOutputWithPast
so that .logits and .loss are directly accessible.
Use forward_all() to get outputs for every sub-model.
"""
prev_hs: Optional[torch.Tensor] = None
out = None
for sub_model in self.lm_model_dict.values():
out = sub_model(
input_ids=input_ids,
attention_mask=attention_mask,
prev_hidden_states=prev_hs,
labels=labels,
output_hidden_states=True,
return_dict=True,
**kwargs,
)
prev_hs = out.hidden_states[-1]
return out
def forward_all(
self,
input_ids: Optional[torch.LongTensor] = None,
attention_mask: Optional[torch.Tensor] = None,
labels: Optional[torch.LongTensor] = None,
**kwargs,
) -> Dict[str, CausalLMOutputWithPast]:
"""Run the full cascade and return outputs for every sub-model."""
results: Dict[str, CausalLMOutputWithPast] = {}
prev_hs: Optional[torch.Tensor] = None
for tag, sub_model in self.lm_model_dict.items():
out = sub_model(
input_ids=input_ids,
attention_mask=attention_mask,
prev_hidden_states=prev_hs,
labels=labels,
output_hidden_states=True,
return_dict=True,
**kwargs,
)
results[tag] = out
prev_hs = out.hidden_states[-1]
return results
def forward_up_to(
self,
tag: str,
input_ids: torch.LongTensor,
**kwargs,
) -> CausalLMOutputWithPast:
"""Run the cascade up to and including `tag`."""
prev_hs = None
out = None
for t, sub_model in self.lm_model_dict.items():
out = sub_model(
input_ids=input_ids,
prev_hidden_states=prev_hs,
output_hidden_states=True,
return_dict=True,
**kwargs,
)
prev_hs = out.hidden_states[-1]
if t == tag:
break
return out
# ---------------------------------------------------------------------------
# Auto-class registration
# ---------------------------------------------------------------------------
AutoConfig.register("matriochka", MatriochkaConfig)
AutoModelForCausalLM.register(MatriochkaConfig, MatriochkaForCausalLM)
# ---------------------------------------------------------------------------
# Smoke-test (python modeling_matriochka.py)
# ---------------------------------------------------------------------------
if __name__ == "__main__":
SHAPES = [(16, 8, 64), (11, 14, 64), (8, 22, 64), (8, 18, 96)]
TAGS = ["100M", "300M", "600M", "1B"]
hiddens = [h * d for _, h, d in SHAPES]
print("hidden sizes: ", hiddens)
print("embed_tokens out dims:", [hiddens[0]] + [hiddens[i] - hiddens[i-1] for i in range(1, len(hiddens))])
cfg = MatriochkaConfig(
sub_model_configs=[
{
"num_hidden_layers": l, "num_attention_heads": h,
"num_key_value_heads": h, "head_dim": d,
"hidden_size": h * d, "intermediate_size": 4 * h * d,
"vocab_size": 49152, "max_position_embeddings": 2048,
"tie_word_embeddings": False,
}
for l, h, d in SHAPES
],
sub_model_tags=TAGS,
)
# Verify all cascade prefixes work independently
for i, tag in enumerate(TAGS):
trunc_cfg = cfg.truncated(tag)
m = MatriochkaForCausalLM(trunc_cfg)
n = sum(p.numel() for p in m.parameters()) / 1e6
dummy = torch.randint(0, 49152, (1, 32))
out = m(dummy)
print(f" [{', '.join(trunc_cfg.sub_model_tags)}] {n:.1f}M params | logits: {out.logits.shape}") |