File size: 784 Bytes
75d6620
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# MTP Configuration Repair

The source and converted Bonsai checkpoint declare `text_config.mtp_num_hidden_layers: 1`, but neither
checkpoint's safetensors index contains an `mtp.*` weight. The oMLX MTP patch therefore constructs an
MTP module that cannot be loaded and correctly rejects calibration.

This derived baseline disables that unavailable head by setting `text_config.mtp_num_hidden_layers` to
`0`. No tensor is altered. The original converted configuration is preserved as
`config.pre-mtp-repair.json`.

- Original config SHA-256: `b0c78786138650e589131f124a1a04b2fc2c730a5ea02fd193a01f4cd0f6c928`
- Reason: source index had zero `mtp.*` tensors; conversion preserved that state.
- Scope: experiment-local derived baseline only; the Hugging Face source remains unchanged.