You need to agree to share your contact information to access this model

This repository is publicly accessible, but you have to accept the conditions to access its files and content.

Log in or Sign Up to review the conditions and access this model content.

stilt.1-124m

Stilt is a family of research language models built on a custom attention mechanism. The name honors T.J. Stieltjes — and the black-winged stilt, a bird whose legs are as heavy-tailed as our attention weights.

stilt.1-124m: 124M parameters, GPT-2-style (ctx 1024, GPT-2 BPE), trained on 10B tokens of FineWeb-Edu. KV-cached generation.

Usage

from transformers import AutoModelForCausalLM, AutoTokenizer

repo = "GulkoA/stilt.1-124m"
tok = AutoTokenizer.from_pretrained(repo)
model = AutoModelForCausalLM.from_pretrained(repo, trust_remote_code=True)

ids = tok("The history of mathematics begins with", return_tensors="pt")
out = model.generate(**ids, max_new_tokens=40, do_sample=True, top_k=40)
print(tok.decode(out[0]))

Runs on CPU or GPU. A dedicated Inference Endpoint deploys directly via the included handler.py.

Family

model params data status
stilt.1-124m 124M FineWeb-Edu 10B this repo
stilt.1-124m-it 124M + chat SFT GulkoA/stilt.1-124m-it
stilt.1-355m 355M web+math+code 15B GulkoA/stilt.1-355m
stilt.1-355m-it 355M + chat SFT GulkoA/stilt.1-355m-it

Research artifacts — no safety tuning. -it suffixes mark instruction-tuned variants.

Downloads last month
9
Safetensors
Model size
0.1B params
Tensor type
F32
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Collection including GulkoA/stilt.1-124m