Views
No views yet
| Property | Value |
|---|---|
| Parameters | 103.46M |
| Transformer layers | 19 |
| Model width | 768 |
| Attention heads | 12 |
| FFN hidden width | 455 |
| Context length | 1,024 |
| Tokenizer | GPT-2 |
safetensors state dictionary. It contains
no optimizer state. This is a base language model and is not instruction-tuned.1import torch
2
3from mowe import load_checkpoint
4
5model = load_checkpoint(
6 "/path/to/dense-768-19l",
7 device="cuda",
8 dtype=torch.bfloat16,
9).eval()