sathishphdai/uiux-designer-slm-5m
19
UI/UX Designer-SLM: Role-Based Small Language Model
A LLaMA-style transformer (~989.3M params, ~0.99B) trained from scratch for the UI/UX Designer role. Supports up to 5M token context via RoPE with gradient checkpointing.
Architecture
Training
- Best eval loss: 3.3150162220001222
- 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/uiux-designer-slm-5m", "model.safetensors")
tokenizer_path = hf_hub_download("sathishphdai/uiux-designer-slm-5m", "uiux_designer_tokenizer.json")
tokenizer = Tokenizer.from_file(tokenizer_path)