Views
No views yet
| Component | Value |
|---|---|
| Hidden dim | 768 |
| Layers | 12 |
| Q Heads | 12 |
| KV Heads | 4 (GQA) |
| Head dim | 64 |
| MLP dim | 2048 |
| Vocab size | 32,000 |
| Max seq len | 2,048 |
| RoPE theta | 1,000,000 |
distillix-v0.safetensors - SafeTensors format (382 MB)distillix-v0.3.gguf - GGUF format for llama.cpp (191 MB)model_500steps.pt - PyTorch checkpoint1import torch
2from safetensors.torch import load_file
3
4# Load model weights
5state_dict = load_file("distillix-v0.safetensors")
6
7# For inference, use with llama.cpp or bitnet.cpp
8# GGUF file is provided for CPU inference@misc{distillix2025,
title={Distillix: Frankenstein BitNet b1.58 Knowledge Distillation},
author={Seaburg, Riley},
year={2025},
url={https://github.com/rileyseaburg/distillix}
}