BabyBabelLM GPTBERT
Collection
BabyBabelLM (Multilingual BabyLM) with GPT-BERT Architecture
β’
10 items
β’
Updated
This repository contains checkpoints for the mono-ukr variant of BabyBabeLLM.
*_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) from transformers import AutoModel, AutoTokenizer
repo = "suchirsalhan/babybabellm-mono-ukr"
tokenizer = AutoTokenizer.from_pretrained(repo)
model = AutoModel.from_pretrained(repo)
inputs = tokenizer("Hello world!", return_tensors="pt")
outputs = model(**inputs)
mono-ukr
indicates the language/config variant.