Augustinian BabyLM

Vision-seeded word embeddings for a BabyLM-scale masked language model

Artifacts for Augustinian BabyLM: What Ostensive Definition Can and Cannot Teach a Small Language Model (BabyLM Workshop 2026) · code on GitHub

A language model normally begins training with random word embeddings. Here, words that label regions in visual grounding data start from a frozen vision encoder's features over those regions — this ostension is applied once, before training on text. Everything after that is ordinary text-only masked language modelling.

Models

DeBERTa-v3-base, trained on ~9.9M words. Every vision-init model has a same-vocabulary baseline that differs only in the input-embedding initialization — same data order, same random seed, same hyperparameters.

deberta-base-{50k,75k,100k} random-init baselines
deberta-base-{50k,75k,100k}-{sam,dinov3,ibot} vision-init, three encoders
deberta-base-75k[-sam]-s2, -s3 seed replicates of the headline pair
deberta-base-75k-sam_ext-s1/s2/s3 synthetic-grounding extension
babylm-bpe-{50k,75k,100k} tokenizers

Intermediate checkpoints are stored as branches (step0, then chck_1M through chck_100M), so training dynamics can be studied without retraining:

from transformers import AutoModelForMaskedLM
AutoModelForMaskedLM.from_pretrained(
    "augustinian-babylm/deberta-base-75k-sam", revision="chck_10M")

Datasets

Result summary

Vision seeding produces a consistent object-property gain (COMPS, +1.30 averaged over nine encoder-vocabulary configurations, positive in all nine) while grammar-focused benchmarks stay flat. On a corpus-tailored Visual-Property Swap probe the advantage is word-specific: it's constrained to the words that were actually seeded, and synthetically grounding previously unseeded words transfers it to exactly those words.

Function words receive strong visual seeds too, retain them to the end of training, and the training objective is shown to use them — but no benchmark registers that.

License and citation

Models and datasets are released under CC BY 4.0.

@inproceedings{bylinina2026augustinian,
  title     = {Augustinian BabyLM: What Ostensive Definition Can and Cannot
               Teach a Small Language Model},
  author    = {Bylinina, Lisa},
  booktitle = {Proceedings of the BabyLM Workshop},
  year      = {2026}
}

Note: these models are trained on bb24.train (Edman et al. 2024), not the official 2026 strict-small distribution, so leaderboard comparisons are indirect. They are research artifacts, not intended for deployment.