sathishphdai/cloud-architect-slm-5m
016
Cloud Architect-SLM: Role-Based Small Language Model
A LLaMA-style transformer (~1009.0M params, ~1.01B) trained from scratch for the Cloud Architect role. Supports up to 5M token context via RoPE with gradient checkpointing.
Architecture
Training
- Best eval loss: 6.724530553817749
- 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/cloud-architect-slm-5m", "model.safetensors")
tokenizer_path = hf_hub_download("sathishphdai/cloud-architect-slm-5m", "cloud_architect_tokenizer.json")
tokenizer = Tokenizer.from_file(tokenizer_path)