Instructions to use jkminder/d16_268m_seed8_sft with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use jkminder/d16_268m_seed8_sft with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="jkminder/d16_268m_seed8_sft", trust_remote_code=True) messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModelForCausalLM model = AutoModelForCausalLM.from_pretrained("jkminder/d16_268m_seed8_sft", trust_remote_code=True, device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use jkminder/d16_268m_seed8_sft with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "jkminder/d16_268m_seed8_sft" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "jkminder/d16_268m_seed8_sft", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/jkminder/d16_268m_seed8_sft
- SGLang
How to use jkminder/d16_268m_seed8_sft with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "jkminder/d16_268m_seed8_sft" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "jkminder/d16_268m_seed8_sft", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "jkminder/d16_268m_seed8_sft" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "jkminder/d16_268m_seed8_sft", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use jkminder/d16_268m_seed8_sft with Docker Model Runner:
docker model run hf.co/jkminder/d16_268m_seed8_sft
Scaling Ladder — d16 (268M total parameters), seed 8, chat-SFT
Research artifact. The chat-SFT of d16_268m_seed8 — size d16, pretraining seed 8 of the plain-architecture Scaling Ladder (base models trained for 200 tokens per parameter). A small research model tuned for basic chat: helpfulness is limited by its size, and it has no safety training.
This revision (main) mirrors ds0_r1, this seed's standard chat-SFT.
Recipe
One pass of nanochat's chat-SFT mixture, applied to the base repository's
main revision (the 200-tokens-per-parameter model):
smol-smoltalk
(460K conversations) + MMLU auxiliary-train x3 + GSM8K main train x4 (with
one calculator tool-call rendered per solution), interleaved by a fixed
shuffle and then permuted by the revision's SFT data seed. The optimizer is
a cold start (+sft.load_optimizer=0): fresh optimizer state, not the
pretraining optimizer's. Learning rates start at 0.8x the pretraining
values, no warmup, linear decay to zero over the second half; 933
steps at this size. Per-revision training provenance (cluster, code commit)
is in the table below.
Revisions
Every revision is one chat-SFT run of the same base model:
ds<k>— SFT data seed k: the permutation of the training-data order (all runs share the data; only the order differs).r<j>— replicate j: an independent repeat at identical configuration. The replicate index is never read by training, so repeats differ only through run-to-run (GPU) nondeterminism.mainmirrorsds0_r1, this seed's standard chat-SFT.
Seed-1 repositories carry a noise battery (replicates ds0_r1..r8, data
seeds ds1..ds7 at r1) from a study of SFT run-to-run variance; the
other seeds have ds0_r1 only. Runs are added as they finish, so a missing
revision only means it has not landed yet.
| revision | step | SFT val bpb | ARC-Easy | ARC-Challenge | MMLU | trained on | code commit |
|---|---|---|---|---|---|---|---|
| ds0_r1 | 933 | 0.3254 | 0.5745 | 0.4147 | 0.3542 | eugleo | affd94ff568e |
Accuracies are fractions from each run's own chat_eval pass (full test suites, greedy decoding: temperature 0, 1 sample, 512 max new tokens; the same harness across all runs and sizes). "SFT val bpb" is the run's final validation loss (bits per byte) on the mixture's held-out split. A "-" means that run's eval has not landed yet.
Usage
The chat template is bundled; format conversations with
apply_chat_template:
from transformers import AutoModelForCausalLM, AutoTokenizer
repo = "jkminder/d16_268m_seed8_sft"
revision = "main" # or any revision above
tok = AutoTokenizer.from_pretrained(repo, revision=revision, trust_remote_code=True)
model = AutoModelForCausalLM.from_pretrained(
repo, revision=revision, trust_remote_code=True, dtype="bfloat16")
msgs = [{"role": "user", "content": "Why is the sky blue?"}]
ids = tok.apply_chat_template(msgs, add_generation_prompt=True, return_tensors="pt")
out = model.generate(ids, max_new_tokens=256)
print(tok.decode(out[0, ids.shape[1]:], skip_special_tokens=True))
trust_remote_code=True is required: the architecture matches no stock
transformers class, so the modeling code ships in the repository
(modeling_nanochat_gpt.py, plain PyTorch). Generation stops on
<|assistant_end|>; sampling defaults (temperature 0.6, top_k 50) ship in
generation_config.json. The template renders nanochat's chat format
token-for-token (a leading system message is merged into the first user
message); conversion is verified per revision by chat-template, logit and
loss equivalence against the original training code
(verify_results.json, where present).
Architecture, tokenizer, training data
Identical to the base repository — a plain GPT (nanochat with all optional architecture mechanisms disabled), nanochat BPE tokenizer (32,768 tokens), base pretraining on ClimbMix; see d16_268m_seed8 for the full description. Weights are bfloat16 safetensors, the training compute precision.
License
- Model weights: cc-by-nc-4.0 (the base model mirrors its ClimbMix training data's research-only license, and this fine-tune mirrors the base).
- Modeling/configuration code: MIT (derived from karpathy/nanochat; see the bundled LICENSE file).
- Downloads last month
- 398
Model tree for jkminder/d16_268m_seed8_sft
Base model
jkminder/d16_268m_seed8