Views
No views yet
▁ marks word-initial morphemes, text is lowercased, OOV words map to <unk>).our_vocab.json)chck_1M ... chck_100M (words seen), per BabyLM checkpoint requirements1from transformers import AutoModelForCausalLM, AutoTokenizer
2tok = AutoTokenizer.from_pretrained("juand-r/morpheus-10M-v2", trust_remote_code=True)
3model = AutoModelForCausalLM.from_pretrained("juand-r/morpheus-10M-v2")offset_mapping, as required by the BabyLM strict evaluation harness.527db5f,
verified to reproduce the training token stream exactly). char_backoff=False matches training
(OOV -> <unk>); the tokenizer class also supports char_backoff=True (OOV -> character pieces).