SEN-AGI/Sable-1.1-30M
1193
๐ค 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:
๐ 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
โ ๏ธ 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.
