CoolFace
Modelpublic

suchirsalhan/babybabellm-mono-fra

sourceHugging Facemitupdated 1y agoView on Hugging Face
0likes13downloads
Model Card

babybabellm-mono-fra

This repository contains checkpoints for the mono-fra variant of BabyBabeLLM.

Files

  • —*_15_16.bin – main model weights
  • —*_15_16_ema.bin – EMA smoothed weights
  • —*_15_16_state_dict.bin – PyTorch state dict
  • —pytorch_model.bin – extracted EMA weights (for AutoModel)
  • —Config + tokenizer files for model loading

Usage

python
from transformers import AutoModel, AutoTokenizer

repo = "suchirsalhan/babybabellm-mono-fra"

tokenizer = AutoTokenizer.from_pretrained(repo)
model = AutoModel.from_pretrained(repo)

inputs = tokenizer("Hello world!", return_tensors="pt")
outputs = model(**inputs)

Notes

  • —These are research checkpoints trained on BabyLM-style data.
  • —Model naming: mono-fra indicates the language/config variant.