Views
No views yet
*_15_16.bin – main model weights*_15_16_ema.bin – EMA smoothed weights*_15_16_state_dict.bin – PyTorch state dictpytorch_model.bin – extracted EMA weights (for AutoModel)1from transformers import AutoModel, AutoTokenizer
2
3repo = "suchirsalhan/babybabellm-mono-nld"
4
5tokenizer = AutoTokenizer.from_pretrained(repo)
6model = AutoModel.from_pretrained(repo)
7
8inputs = tokenizer("Hello world!", return_tensors="pt")
9outputs = model(**inputs)mono-nld indicates the language/config variant.