Text Generation
Transformers
Safetensors
English
slm
arithmetic
math
causal-lm
custom_code
Eval Results (legacy)
Instructions to use WhirlwindAI/Arithmetic-SLM with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use WhirlwindAI/Arithmetic-SLM with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="WhirlwindAI/Arithmetic-SLM", trust_remote_code=True)# Load model directly from transformers import AutoModelForCausalLM model = AutoModelForCausalLM.from_pretrained("WhirlwindAI/Arithmetic-SLM", trust_remote_code=True, dtype="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use WhirlwindAI/Arithmetic-SLM with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "WhirlwindAI/Arithmetic-SLM" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "WhirlwindAI/Arithmetic-SLM", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/WhirlwindAI/Arithmetic-SLM
- SGLang
How to use WhirlwindAI/Arithmetic-SLM with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "WhirlwindAI/Arithmetic-SLM" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "WhirlwindAI/Arithmetic-SLM", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "WhirlwindAI/Arithmetic-SLM" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "WhirlwindAI/Arithmetic-SLM", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use WhirlwindAI/Arithmetic-SLM with Docker Model Runner:
docker model run hf.co/WhirlwindAI/Arithmetic-SLM
| from transformers import PretrainedConfig | |
| class TinyGPTConfig(PretrainedConfig): | |
| model_type = "slm" | |
| def __init__( | |
| self, | |
| vocab_size=32768, | |
| ctx_len=512, | |
| n_layer=4, | |
| n_head=4, | |
| n_embd=384, | |
| dropout=0.0, | |
| attention_backend="torch", | |
| torch_fallback=False, | |
| rope_base=10000.0, | |
| positional_encoding="rope", | |
| pad_token_id=None, | |
| bos_token_id=None, | |
| eos_token_id=None, | |
| sep_token_id=None, | |
| unk_token_id=None, | |
| **kwargs, | |
| ): | |
| super().__init__( | |
| pad_token_id=pad_token_id, | |
| bos_token_id=bos_token_id, | |
| eos_token_id=eos_token_id, | |
| sep_token_id=sep_token_id, | |
| unk_token_id=unk_token_id, | |
| **kwargs, | |
| ) | |
| if attention_backend not in ("sage", "torch", "flash2", "flash3"): | |
| raise ValueError("attention_backend must be sage, torch, flash2 or flash3") | |
| self.vocab_size = int(vocab_size) | |
| self.ctx_len = int(ctx_len) | |
| self.max_position_embeddings = int(ctx_len) | |
| self.n_layer = int(n_layer) | |
| self.n_head = int(n_head) | |
| self.n_embd = int(n_embd) | |
| self.num_hidden_layers = int(n_layer) | |
| self.num_attention_heads = int(n_head) | |
| self.hidden_size = int(n_embd) | |
| self.dropout = float(dropout) | |
| self.attention_backend = str(attention_backend) | |
| self.available_attention_backends = ["sage", "torch", "flash2", "flash3"] | |
| self.torch_fallback = bool(torch_fallback) | |
| self.rope_base = float(rope_base) | |
| self.positional_encoding = str(positional_encoding) | |