Downloads · 30 days
307
31% of all-time downloads
littlelearner/littlelearner-5b-base
littlelearner-5b-base is a text generation model from littlelearner. Use it when you need the model to write or continue text. It is set up for transformers. The card lists the license as other.
5B K-5-bounded base model (pretraining only).
Downloads · 30 days
307
31% of all-time downloads
All-time downloads
984
Public
Parameters
5B
10.1 GB on disk
Likes
2
Public
Click a slice to open those files.
.safetensors10.1 GB · 100%
From the Hugging Face model README
5B K-5-bounded base model (pretraining only).
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.
Qwen3ForCausalLM).# transformers (completion)
from transformers import AutoModelForCausalLM, AutoTokenizer
repo = "manueldeprada/littlelearner-5b-bounded-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-5b-bounded-base")
print(llm.generate(["The sum of 2 and 3 is"])[0].outputs[0].text)