Views
No views yet
| Component | Configuration |
|---|---|
| Model Type | Autoregressive Transformer (GPT-style) |
| Parameters | 3.2 billion |
| Embedding Dimension | 3,072 |
| Attention Heads | 32 query heads, 8 KV heads (GQA) |
| Head Dimension | 96 |
| MLP Hidden Dimension | 8,192 |
| Decoder Layers | 32 |
| Vocabulary Size | 50,304 (GPT-2 tokenizer) |
| Max Sequence Length | 2,048 tokens |
| Activation Function | GeLU |
1# Clone MaxText
2git clone https://github.com/google/maxtext.git
3cd maxtext
4
5# Run inference
6python MaxText/decode.py \
7 MaxText/configs/base.yml \
8 load_parameters_path=gs://your-bucket/kisoku-3.2b/checkpoints/99999/items \
9 base_emb_dim=3072 \
10 base_num_query_heads=32 \
11 base_num_kv_heads=8 \
12 base_mlp_dim=8192 \
13 base_num_decoder_layers=32 \
14 head_dim=96 \
15 vocab_size=50304 \
16 tokenizer_path=gpt2 \
17 max_target_length=2048 \
18 prompt="Your prompt here"1@software{kisoku2025,
2 title={Kisoku: A 3.2B Parameter Language Model},
3 author={Rodriguez, Joseph},
4 year={2025},
5 url={https://huggingface.co/0arch-io/kisoku-3.2b-base},
6 note={Trained using Google TRC program}
7}