Views
No views yet
openai-community/gpt2-large tokenizer.
Not trained.All four eGPT-100M-qwen3 variants share the same 113.27M non-embedding parameters. Only the embedding / lm_head matrices differ across tokenizers (vocab size).
| Field | Value |
|---|---|
| Total Parameters | 190.47M |
| Non-Embedding Params | 113.27M |
| Layers | 16 |
| Hidden Size | 768 |
| Attention Heads (Q) | 12 |
| Attention Heads (KV) | 12 |
| Head Dim | 64 |
| Intermediate Size (FFN) | 2048 |
| Max Seq Len | 1024 |
| Vocab Size | 50257 |
| Tokenizer | openai-community/gpt2-large |
| Activation | SwiGLU (silu) |
| Positional Encoding | RoPE (θ=10000.0) |
| QK-Norm | ✅ per-head RMSNorm |
| Sliding Window | False |
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3tok = AutoTokenizer.from_pretrained("LLMsHub/eGPT-100M-qwen3-gpt2-untrained")
4model = AutoModelForCausalLM.from_pretrained("LLMsHub/eGPT-100M-qwen3-gpt2-untrained")