unfiltered-1.3b-base

1.36B unbounded base model (pretraining only). The control for the K-5 boundary study.

Part of the LittleLearner scale-up study (pedagogically-controlled knowledge exposure): Qwen3 dense LMs trained on a corpus filtered to U.S. K-5 material (bounded) vs an unfiltered FineWeb-Edu corpus (unbounded), to measure what an interpretable knowledge boundary costs and grants.

Model

  • Architecture: Qwen3 dense (Qwen3ForCausalLM).
  • Size: 1.358B params, hidden 2048, 26 layers, 16 query / 8 KV heads, FFN 5632. Context: 4096.
  • Tokenizer: custom 64k byte-level BPE with per-digit splitting (ChatML special tokens).
  • Pretraining: 88B tokens on unfiltered FineWeb-Edu (score >= 2, no grade filter). WSD schedule, sharded Muon, MXFP8, Megatron-Core on 8xB200.

Evaluation

  • Held-out BPB on unbounded text: 0.757.
  • Concept-BPB on above-K-5 material: 0.548.

Usage

# transformers (completion)
from transformers import AutoModelForCausalLM, AutoTokenizer
repo = "manueldeprada/littlelearner-1.3b-unbounded-base"
tok = AutoTokenizer.from_pretrained(repo)
model = AutoModelForCausalLM.from_pretrained(repo, dtype="bfloat16", device_map="cuda")
ids = tok("The sum of 2 and 3 is", return_tensors="pt").to(model.device)
print(tok.decode(model.generate(**ids)[0], skip_special_tokens=True))
# vLLM
from vllm import LLM
llm = LLM("manueldeprada/littlelearner-1.3b-unbounded-base")
print(llm.generate(["The sum of 2 and 3 is"])[0].outputs[0].text)
Downloads last month
1
Safetensors
Model size
1B params
Tensor type
BF16
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support