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