sathishphdai/software-engineer-slm-1m
015
Software Engineer-SLM: Role-Based Small Language Model
A LLaMA-style transformer (~989.9M params, ~0.99B) trained from scratch for the Software Engineer role. Supports up to 1M token context via RoPE with gradient checkpointing.
Architecture
Training
- Best eval loss: 0.301249697804451
- Trained with gradient checkpointing on Apple M4 (MPS)
- 5 epochs, batchsize=1, gradaccum=16
Usage
from huggingface_hub import hf_hub_download
from tokenizers import Tokenizer
model_path = hf_hub_download("sathishphdai/software-engineer-slm-1m", "model.safetensors")
tokenizer_path = hf_hub_download("sathishphdai/software-engineer-slm-1m", "software_engineer_tokenizer.json")
tokenizer = Tokenizer.from_file(tokenizer_path)