CoolFace
Modelpublic

Banaxi-Tech/pico-80

sourceHugging Faceupdated 1mo agoView on Hugging Face
0likes53downloads
Model Card

BananaMind 2 Pico Test - 80%

This is the 80% checkpoint of a 900,002-parameter base causal language model. It is not instruction tuned.

Architecture

FieldValue
Parameters900,002
Layers / hidden size6 / 96
SwiGLU intermediate size380
Query / KV heads6 / 2
Head dimension16
Context4,096
Vocabulary384, tied
Refresh layers4 and 6
Refresh kernelCausal depthwise, width 9

The selective XSA refresh gate reads detached attention output as its signal, reinjects the original input embedding as its value, and carries convolution history alongside the K/V cache. Its learned residual scalar starts at zero.

Training

FieldValue
Progress80%
Tokens seen160,004,308,992
Target tokens200,000,000,000
Hardware4 x NVIDIA H200
Matrix optimizerStock torch.optim.Muon
Muon peak LR0.07
Embedding/control optimizerAdamW, LR 0.004
Precisionbfloat16 autocast
Token rangeFineWeb-HQCosmopedia v2
0.00B-100.00B80%20%
100.00B-200.00B60%40%

Usage

python
from transformers import AutoModelForCausalLM, AutoTokenizer

model_id = "Banaxi-Tech/pico-test"
tokenizer = AutoTokenizer.from_pretrained(model_id, trust_remote_code=True)
model = AutoModelForCausalLM.from_pretrained(model_id, trust_remote_code=True)