π€ Sable-Mini-30M (Preview)
Sable-Mini is a 30M parameter causal language model trained on approximately 3β4B tokens. It is the flagship of the Sable tiny model family, balancing compact size with capable text generation.
β οΈ This is a preview release β expect improvements in future versions.
π Benchmark Results
Evaluated with the LM Evaluation Harness:
| Benchmark | Accuracy | Metric |
|---|---|---|
| BoolQ | 57.5% | acc |
| PIQA | 57.8% | acc_norm |
| WinoGrande | 53.3% | acc |
| ARC-Easy | 39.0% | acc_norm |
| HellaSwag | 28.1% | acc_norm |
| Lambada | 11.7% | acc |
π Quick Start
from transformers import AutoModelForCausalLM, AutoTokenizer
tokenizer = AutoTokenizer.from_pretrained("yourorg/sable-mini-30m-preview")
model = AutoModelForCausalLM.from_pretrained("yourorg/sable-mini-30m-preview")
inputs = tokenizer("The future of tiny models is", return_tensors="pt")
outputs = model.generate(**inputs, max_new_tokens=50)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
ποΈ Model Details
| Property | Value |
|---|---|
| Parameters | 30M |
| Architecture | Llama-style decoder |
| Training tokens | ~3β4B |
| Context length | β add yours |
| Vocab size | β add yours |
β οΈ Limitations
- Preview release β not recommended for production use
- Limited knowledge due to small parameter count
- May produce biased or incorrect outputs
π License
Apache 2.0 β free for commercial and research use.
Part of the Sable family π€ β tiny models, sharp minds.
- Downloads last month
- 5
