Instructions to use fbaldassarri/HuggingFaceTB_SmolLM2-360M-Instruct-auto_round-int8-gs64-asym with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use fbaldassarri/HuggingFaceTB_SmolLM2-360M-Instruct-auto_round-int8-gs64-asym with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="fbaldassarri/HuggingFaceTB_SmolLM2-360M-Instruct-auto_round-int8-gs64-asym") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("fbaldassarri/HuggingFaceTB_SmolLM2-360M-Instruct-auto_round-int8-gs64-asym") model = AutoModelForCausalLM.from_pretrained("fbaldassarri/HuggingFaceTB_SmolLM2-360M-Instruct-auto_round-int8-gs64-asym", 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 fbaldassarri/HuggingFaceTB_SmolLM2-360M-Instruct-auto_round-int8-gs64-asym with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "fbaldassarri/HuggingFaceTB_SmolLM2-360M-Instruct-auto_round-int8-gs64-asym" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "fbaldassarri/HuggingFaceTB_SmolLM2-360M-Instruct-auto_round-int8-gs64-asym", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/fbaldassarri/HuggingFaceTB_SmolLM2-360M-Instruct-auto_round-int8-gs64-asym
- SGLang
How to use fbaldassarri/HuggingFaceTB_SmolLM2-360M-Instruct-auto_round-int8-gs64-asym 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 "fbaldassarri/HuggingFaceTB_SmolLM2-360M-Instruct-auto_round-int8-gs64-asym" \ --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": "fbaldassarri/HuggingFaceTB_SmolLM2-360M-Instruct-auto_round-int8-gs64-asym", "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 "fbaldassarri/HuggingFaceTB_SmolLM2-360M-Instruct-auto_round-int8-gs64-asym" \ --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": "fbaldassarri/HuggingFaceTB_SmolLM2-360M-Instruct-auto_round-int8-gs64-asym", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use fbaldassarri/HuggingFaceTB_SmolLM2-360M-Instruct-auto_round-int8-gs64-asym with Docker Model Runner:
docker model run hf.co/fbaldassarri/HuggingFaceTB_SmolLM2-360M-Instruct-auto_round-int8-gs64-asym
Model Information
Quantized version of HuggingFaceTB/SmolLM2-360M-Instruct using torch.bfloat16 for quantization tuning.
- 8 bits (INT8)
- group size = 64
- Asymmetrical Quantization
- Method: WoQ — SignRound (AutoRound algorithm)
Quantization framework: Intel AutoRound v0.13.0
Note: this INT8 version of SmolLM2 360M Instruct has been quantized for inference on Intel CPU, Intel iGPU (Arc) via intel-extension-for-pytorch, Intel NPU (AI Boost on Core Ultra series) via OpenVINO.
Replication Recipe
The recommended way to reproduce this exact quantization is via the auto-round-pipeline — the same orchestration tool that produced this artifact.
Step 1 — Bootstrap the auto-round-pipeline
Set up a dedicated conda environment using the pipeline's setup.sh. Any of the install modes below produces an environment that can reproduce this quantization; pick the one that matches your goals:
git clone https://git.epicdynamic.com/auto-round-pipeline
cd auto-round-pipeline
# Pinned PyPI wheel (fastest; matches what this pipeline used by default):
bash setup.sh --pip-version 0.13.0
# Or build from intel/auto-round at the same tag (byte-identical reproducibility):
bash setup.sh --source-tag v0.13.0
# Intel Arc iGPU acceleration (e.g. Core Ultra 185H) — append to either of the above:
# ... --intel-xpu
# NVIDIA / AMD opt-in: --cuda / --rocm
The script prints the resulting conda env name (something like auto-round-pipeline-v0.13.0[-src][-xpu|-cuda|-rocm]) at the end.
Step 2 — Quantize just this model
Activate the env that setup.sh created, then invoke the runner with the same job filters that produced this artifact:
conda activate <env-name-printed-by-setup.sh>
python runner.py \
--model 'HuggingFaceTB/SmolLM2-360M-Instruct' \
--quant 'INT8-gs64' \
--format auto_round \
--no-upload # drop this to also push to HuggingFace Hub
Step 3 — (Optional) standalone Python recipe
If you'd rather call auto-round directly without the orchestration wrapper, this is the exact call the pipeline made:
import torch
from transformers import AutoModelForCausalLM, AutoTokenizer
from auto_round import AutoRound
model_name = "HuggingFaceTB/SmolLM2-360M-Instruct"
model = AutoModelForCausalLM.from_pretrained(model_name, torch_dtype=torch.bfloat16)
tokenizer = AutoTokenizer.from_pretrained(model_name)
bits, group_size, sym = 8, 64, False
autoround = AutoRound(
model, tokenizer,
bits=bits, group_size=group_size, sym=sym,
device_map="cpu",
nsamples=128, iters=200, seqlen=512, batch_size=4,
)
autoround.quantize_and_save("./AutoRound/HuggingFaceTB_SmolLM2-360M-Instruct-auto_round-int8-gs64-asym", format="auto_round")
Actual Run Conditions
Recorded by the auto-round-pipeline at quantization time:
| Field | Value |
|---|---|
| Intel auto-round version | 0.13.0 |
| transformers version | 4.55.3 |
| torch version | 2.12.0+cpu |
| torch_dtype (load) | torch.bfloat16 |
| calibration device | cpu |
| calibration samples | 128 |
| tuning iterations | 200 |
| calibration seq len | 512 |
| calibration batch size | 4 |
| quantization duration | 2536.6s (42.3 min) |
| completed at (UTC) | 2026-06-13T02:45:40.272898+00:00 |
License
Disclaimer
This quantized model comes with no warranty. It has been developed only for research purposes.
- Downloads last month
- 3
Model tree for fbaldassarri/HuggingFaceTB_SmolLM2-360M-Instruct-auto_round-int8-gs64-asym
Base model
HuggingFaceTB/SmolLM2-360M