Safetensors
English
byte-level
hierarchical
tokenizer-free

LCA-MBP 3x (pretrained)

Hierarchical byte model with the multi-byte prediction head and Latent Causal Attention, segmenting at ~3.3 bytes per latent token.

From Dynamic Multi-Byte Prediction With Hierarchical Language Models. Code: skai-research/lca-multibyte.

Parameters 374M
Vocabulary 261 (256 bytes + <pad>/</s>/<unk> + <en>, <eot>)
Context 4096 bytes
model_config [2, (16,), 2, 2]
attn_type prev_group_self
Precision fp32

Results

Metric Value
Byte-level BPC (validation) 0.934
MBP-head BPC (validation) 2.305
Bytes per latent token 3.28
Training steps 48,186

Usage

This is not a transformers architecture — load it with the code from the paper repo:

git clone https://github.com/skai-research/lca-multibyte && cd lca-multibyte
uv sync && export PYTHONPATH=$(pwd)
from huggingface_hub import snapshot_download
from src.eval.model_loader import load_fxt_model

path = snapshot_download("skai-research/lca-3x-base")
model, tokenizer, config = load_fxt_model(path, device="cuda")

Or generate directly:

python src/eval/generate.py --model_path $(python -c \
  "from huggingface_hub import snapshot_download; print(snapshot_download('skai-research/lca-3x-base'))") \
  --prompt "The capital of France is" --mode self_speculative

--show_tokenization prints the learned segment boundaries.

Training

Pretrained on FineWeb-Edu sample-100BT. Config: configs/train/modern_fxt_priors_0.3_en_lca_prev_group_self_256_scale_bp_dualhead.yaml.

Citation

@article{owodunni2026lca,
  title   = {Dynamic Multi-Byte Prediction With Hierarchical Language Models},
  author  = {Owodunni, Abraham Toluwase and Okocha, Chibuzor and Grant, Christan
             and Limisiewicz, Tomasz and Kumar, Sachin},
  year    = {2026},
  journal = {arXiv preprint arXiv:2608.15454},
  url     = {https://arxiv.org/abs/2608.15454}
}
Downloads last month
4
Safetensors
Model size
0.4B params
Tensor type
F32
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for skai-research/lca-3x-base

Finetunes
1 model

Dataset used to train skai-research/lca-3x-base

Collection including skai-research/lca-3x-base

Paper for skai-research/lca-3x-base