Views
No views yet
| Component | Value |
|---|---|
| Architecture | LLaMA-style (RoPE + RMSNorm + SwiGLU) |
| Parameters | ~989.0M (~0.99B) |
| Layers | 32 |
| Heads | 20 |
| Embedding | 1600 |
| Max Context | 5,000,000 tokens |
| Max Output | 5,000,000 tokens |
| Vocab | 1,605 BPE |
| Model Size | ~4 GB (fp32) |
1from huggingface_hub import hf_hub_download
2from tokenizers import Tokenizer
3
4model_path = hf_hub_download("sathishphdai/marketing-manager-slm-5m", "model.safetensors")
5tokenizer_path = hf_hub_download("sathishphdai/marketing-manager-slm-5m", "marketing_manager_tokenizer.json")
6tokenizer = Tokenizer.from_file(tokenizer_path)