Views
No views yet
| Version | 0.2 |
| Parameters | 190.2M |
| Architecture | LLaMA-style (decoder-only transformer) |
| Context length | 4,096 tokens (YaRN RoPE, 4× factor) |
| Training context | 1,024 tokens |
| Precision | bfloat16 |
| Vocabulary | 32,000 (SentencePiece Unigram, Hungarian) |
| Training data | ~2B tokens of Hungarian text |
| Framework | MLX (Apple Silicon) |
| License | MIT |
1import mlx.core as mx
2from model import Emese, ModelConfig
3
4config = ModelConfig()
5model = Emese(config)
6model.load_weights("model.safetensors")