Views
No views yet
trust_remote_code=True).serial_urchin.py + configuration_serial_urchin.py provide an RSNN single-time-scan forward (UrchinSerialForCausalLM) reproducing the parallel outputs (score-equivalent), event-driven in O(T), using the SAME model.safetensors weights.1import torch
2from transformers import AutoModelForCausalLM, AutoTokenizer
3
4model = AutoModelForCausalLM.from_pretrained("strict_100M", trust_remote_code=True).eval()
5tok = AutoTokenizer.from_pretrained("strict_100M")
6ids = tok("The quick brown fox", return_tensors="pt").input_ids
7with torch.no_grad():
8 logits = model(ids).logitschck_<N>M for the BabyLM challenge fast-eval.CITATION.cff):1@misc{anonymous2026urchin,
2 title = {URCHIN: A Horizontal Spiking Language Model for Data-Constrained Pretraining},
3 author = {Anonymous},
4 year = {2026},
5 howpublished = {under review (anonymized)},
6 note = {URCHIN spiking recurrent language model, BabyLM 2026}
7}PROVENANCE.md.