Text Generation
Transformers
Safetensors
English
llama
math
fine-tuned
lora
unsloth
conversational
Eval Results (legacy)
text-generation-inference
Instructions to use OliverSundaram/Llama-3.2-1B-MathCodeInstruct-10k with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use OliverSundaram/Llama-3.2-1B-MathCodeInstruct-10k with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="OliverSundaram/Llama-3.2-1B-MathCodeInstruct-10k") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("OliverSundaram/Llama-3.2-1B-MathCodeInstruct-10k") model = AutoModelForCausalLM.from_pretrained("OliverSundaram/Llama-3.2-1B-MathCodeInstruct-10k", device_map="auto") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use OliverSundaram/Llama-3.2-1B-MathCodeInstruct-10k with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "OliverSundaram/Llama-3.2-1B-MathCodeInstruct-10k" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "OliverSundaram/Llama-3.2-1B-MathCodeInstruct-10k", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/OliverSundaram/Llama-3.2-1B-MathCodeInstruct-10k
- SGLang
How to use OliverSundaram/Llama-3.2-1B-MathCodeInstruct-10k 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 "OliverSundaram/Llama-3.2-1B-MathCodeInstruct-10k" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "OliverSundaram/Llama-3.2-1B-MathCodeInstruct-10k", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'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 "OliverSundaram/Llama-3.2-1B-MathCodeInstruct-10k" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "OliverSundaram/Llama-3.2-1B-MathCodeInstruct-10k", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Unsloth Desktop
- Docker Model Runner
How to use OliverSundaram/Llama-3.2-1B-MathCodeInstruct-10k with Docker Model Runner:
docker model run hf.co/OliverSundaram/Llama-3.2-1B-MathCodeInstruct-10k
File size: 2,646 Bytes
8df4b79 7f94ea0 8df4b79 7f94ea0 8df4b79 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 | {
"config": {
"prompt": "Natalia sold clips to 48 of her friends in April, and then she sold half as many clips in May. How many clips did Natalia sell altogether in April and May? Solve step by step.",
"tokens_per_run": 256,
"rounds": 3,
"interleaved": true,
"dtype": "bfloat16",
"greedy": true,
"device": "NVIDIA GeForce RTX 4060",
"torch": "2.11.0+cu128"
},
"models": {
"base": {
"model_path": "unsloth/Llama-3.2-1B",
"decode_tok_s": 40.59,
"decode_tok_s_min": 39.28,
"decode_tok_s_max": 40.62,
"end_to_end_tok_s": 40.56,
"prefill_ms": 29.3,
"prompt_tokens": 44,
"generated_tokens": 256,
"rounds": [
{
"prompt_tokens": 44,
"generated_tokens": 256,
"prefill_s": 0.0321,
"total_s": 6.5236,
"decode_tok_s": 39.28,
"end_to_end_tok_s": 39.24,
"gpu": "51C / 2775MHz"
},
{
"prompt_tokens": 44,
"generated_tokens": 256,
"prefill_s": 0.0293,
"total_s": 6.307,
"decode_tok_s": 40.62,
"end_to_end_tok_s": 40.59,
"gpu": "58C / 2775MHz"
},
{
"prompt_tokens": 44,
"generated_tokens": 256,
"prefill_s": 0.0293,
"total_s": 6.3119,
"decode_tok_s": 40.59,
"end_to_end_tok_s": 40.56,
"gpu": "51C / 2775MHz"
}
]
},
"10k": {
"model_path": "Llama-3.2-1B-MathCodeInstruct-10k/outputs/llama-3.2-1b-10k",
"decode_tok_s": 40.53,
"decode_tok_s_min": 40.45,
"decode_tok_s_max": 40.65,
"end_to_end_tok_s": 40.51,
"prefill_ms": 29.4,
"prompt_tokens": 44,
"generated_tokens": 256,
"rounds": [
{
"prompt_tokens": 44,
"generated_tokens": 256,
"prefill_s": 0.0294,
"total_s": 6.3332,
"decode_tok_s": 40.45,
"end_to_end_tok_s": 40.42,
"gpu": "55C / 2775MHz"
},
{
"prompt_tokens": 44,
"generated_tokens": 256,
"prefill_s": 0.0302,
"total_s": 6.3032,
"decode_tok_s": 40.65,
"end_to_end_tok_s": 40.61,
"gpu": "52C / 2775MHz"
},
{
"prompt_tokens": 44,
"generated_tokens": 256,
"prefill_s": 0.0292,
"total_s": 6.3201,
"decode_tok_s": 40.53,
"end_to_end_tok_s": 40.51,
"gpu": "50C / 2790MHz"
}
]
}
}
} |