sathishphdai/database-admin-slm-1m
014
Database Admin-SLM: Role-Based Small Language Model
A LLaMA-style transformer (~1007.5M params, ~1.01B) trained from scratch for the Database Admin role. Supports up to 1M token context via RoPE with gradient checkpointing.
Architecture
Training
- Best eval loss: 6.770246982574463
- Trained with gradient checkpointing on Apple M4 (MPS)
- 3 epochs, batchsize=1, gradaccum=16
Usage
from huggingface_hub import hf_hub_download
from tokenizers import Tokenizer
model_path = hf_hub_download("sathishphdai/database-admin-slm-1m", "model.safetensors")
tokenizer_path = hf_hub_download("sathishphdai/database-admin-slm-1m", "database_admin_tokenizer.json")
tokenizer = Tokenizer.from_file(tokenizer_path)