CoolFace
Modelpublic

SEN-AGI/Sable-1.1-30M

sourceHugging Faceapache-2.0updated 1mo agoView on Hugging Face
1likes193downloads
Model Card

๐Ÿ–ค 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:

BenchmarkAccuracyMetric
BoolQ57.5%acc
PIQA57.8%acc_norm
WinoGrande53.3%acc
ARC-Easy39.0%acc_norm
HellaSwag28.1%acc_norm
Lambada11.7%acc

[image]

๐Ÿš€ Quick Start

python
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

PropertyValue
Parameters30M
ArchitectureLlama-style decoder
Training tokens~3โ€“4B
Vocab size24k

โš ๏ธ 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.