From 20a33fad306dfb8d0c78f45924370358562eb9e2 Mon Sep 17 00:00:00 2001 From: ModelHub XC Date: Fri, 19 Jun 2026 15:30:13 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=9D=E5=A7=8B=E5=8C=96=E9=A1=B9=E7=9B=AE?= =?UTF-8?q?=EF=BC=8C=E7=94=B1ModelHub=20XC=E7=A4=BE=E5=8C=BA=E6=8F=90?= =?UTF-8?q?=E4=BE=9B=E6=A8=A1=E5=9E=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Model: unsloth/SmolLM3-3B-Base Source: Original Platform --- .gitattributes | 36 +++++ README.md | 243 +++++++++++++++++++++++++++++++ config.json | 3 + configuration.json | 1 + generation_config.json | 8 + model-00001-of-00002.safetensors | 3 + model-00002-of-00002.safetensors | 3 + model.safetensors.index.json | 3 + special_tokens_map.json | 16 ++ tokenizer.json | 3 + tokenizer_config.json | 3 + 11 files changed, 322 insertions(+) create mode 100644 .gitattributes create mode 100644 README.md create mode 100644 config.json create mode 100644 configuration.json create mode 100644 generation_config.json create mode 100644 model-00001-of-00002.safetensors create mode 100644 model-00002-of-00002.safetensors create mode 100644 model.safetensors.index.json create mode 100644 special_tokens_map.json create mode 100644 tokenizer.json create mode 100644 tokenizer_config.json diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..52373fe --- /dev/null +++ b/.gitattributes @@ -0,0 +1,36 @@ +*.7z filter=lfs diff=lfs merge=lfs -text +*.arrow filter=lfs diff=lfs merge=lfs -text +*.bin filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.ckpt filter=lfs diff=lfs merge=lfs -text +*.ftz filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.h5 filter=lfs diff=lfs merge=lfs -text +*.joblib filter=lfs diff=lfs merge=lfs -text +*.lfs.* filter=lfs diff=lfs merge=lfs -text +*.mlmodel filter=lfs diff=lfs merge=lfs -text +*.model filter=lfs diff=lfs merge=lfs -text +*.msgpack filter=lfs diff=lfs merge=lfs -text +*.npy filter=lfs diff=lfs merge=lfs -text +*.npz filter=lfs diff=lfs merge=lfs -text +*.onnx filter=lfs diff=lfs merge=lfs -text +*.ot filter=lfs diff=lfs merge=lfs -text +*.parquet filter=lfs diff=lfs merge=lfs -text +*.pb filter=lfs diff=lfs merge=lfs -text +*.pickle filter=lfs diff=lfs merge=lfs -text +*.pkl filter=lfs diff=lfs merge=lfs -text +*.pt filter=lfs diff=lfs merge=lfs -text +*.pth filter=lfs diff=lfs merge=lfs -text +*.rar filter=lfs diff=lfs merge=lfs -text +*.safetensors filter=lfs diff=lfs merge=lfs -text +saved_model/**/* filter=lfs diff=lfs merge=lfs -text +*.tar.* filter=lfs diff=lfs merge=lfs -text +*.tar filter=lfs diff=lfs merge=lfs -text +*.tflite filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.wasm filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text +*tfevents* filter=lfs diff=lfs merge=lfs -text +tokenizer.json filter=lfs diff=lfs merge=lfs -text diff --git a/README.md b/README.md new file mode 100644 index 0000000..9c29465 --- /dev/null +++ b/README.md @@ -0,0 +1,243 @@ +--- +base_model: +- HuggingFaceTB/SmolLM3-3B-Base +library_name: transformers +license: apache-2.0 +language: +- en +- fr +- es +- it +- pt +- zh +- ar +- ru +tags: +- transformers.js +- unsloth +--- +
+

+ Unsloth Dynamic 2.0 achieves superior accuracy & outperforms other leading quants. +

+
+ + + + + + + + + +
+
+ + + +# SmolLM3 + + +![image/png](https://cdn-uploads.huggingface.co/production/uploads/61c141342aac764ce1654e43/zy0dqTCCt5IHmuzwoqtJ9.png) + + +## Table of Contents + +1. [Model Summary](#model-summary) +2. [How to use](#how-to-use) +3. [Evaluation](#evaluation) +4. [Training](#training) +5. [Limitations](#limitations) +6. [License](#license) + +## Model Summary + +SmolLM3 is a 3B parameter language model designed to push the boundaries of small models. It supports 6 languages, advanced reasoning and long context. SmolLM3 is a fully open model that offers strong performance at the 3B–4B scale. + +![image/png](https://cdn-uploads.huggingface.co/production/uploads/61c141342aac764ce1654e43/Zcm_016pWeyFr_uIkT7Ki.png) + +**SmolLM3-3B-Base** is the base model after pretraining, you can find the instruct model at [SmolLM3-3B](https://huggingface.co/HuggingFaceTB/SmolLM3-3B). + +The model is a decoder-only transformer using GQA and NoPE, it was pretrained on 11.2T tokens with a staged curriculum of web, code, math and reasoning data. Post-training included midtraining on 140B reasoning tokens followed by supervised fine-tuning and alignment via Anchored Preference Optimization (APO). + +### Key features +- Instruct model optimized for **hybrid reasoning** +- **Fully open model**: open weights + full training details including public data mixture and training configs +- **Long context:** Trained on 64k context and suppots up to **128k tokens** using YARN extrapolation +- **Multilingual**: 6 natively supported (English, French, Spanish, German, Italian, and Portuguese) + +For more details refer to our blog post: https://hf.co/blog/smollm3 + +### How to use +The modeling code for SmolLM3 is available in transformers `v4.53.0`, so make sure to upgrade your transformers version. You can also load the model with the latest `vllm` which uses transformers as a backend. +```bash +pip install -U transformers +``` + +```python +from transformers import AutoModelForCausalLM, AutoTokenizer + +checkpoint = "HuggingFaceTB/SmolLM3-3B" +device = "cuda" # for GPU usage or "cpu" for CPU usage +tokenizer = AutoTokenizer.from_pretrained(checkpoint) +# for multiple GPUs install accelerate and do `model = AutoModelForCausalLM.from_pretrained(checkpoint, device_map="auto")` +model = AutoModelForCausalLM.from_pretrained(checkpoint).to(device) +inputs = tokenizer.encode("Gravity is", return_tensors="pt").to(device) +outputs = model.generate(inputs) +print(tokenizer.decode(outputs[0])) +``` + +For local inference, you can use `llama.cpp`, `ONNX`, `MLX` and `MLC`. You can find quantized checkpoints in this collection (https://huggingface.co/collections/HuggingFaceTB/smollm3-686d33c1fdffe8e635317e23). + +### Long context processing + +The current `config.json` is set for context length up to 65,536 tokens. To handle longer inputs (128k or 256k), we utilize YaRN you can change the `max_position_embeddings` and rope_scaling` to: +``` +{ + ..., + "rope_scaling": { + "factor": 2.0, #2x65536=131 072 + "original_max_position_embeddings": 65536, + "type": "yarn" + } +} +``` + + +## Evaluation + +In this section, we report the evaluation results of SmolLM3 model. All evaluations are zero-shot unless stated otherwise, and we use [lighteval](https://github.com/huggingface/lighteval) to run them. + +We highlight the best score in bold and underline the second-best score. + +### Base Pre-Trained Model + +#### English benchmarks +Note: All evaluations are zero-shot unless stated otherwise. For Ruler 64k evaluation, we apply YaRN to the Qwen models with 32k context to extrapolate the context length. + +| Category | Metric | SmolLM3-3B | Qwen2.5-3B | Llama3-3.2B | Qwen3-1.7B-Base | Qwen3-4B-Base | +|---------|--------|---------------------|------------|--------------|------------------|---------------| +| Reasoning & Commonsense| HellaSwag | **76.15** | 74.19 |75.52 | 60.52 | 74.37 | +| | ARC-CF (Average) | **65.61** | 59.81 | 58.58 | 55.88 | 62.11 | +| | Winogrande | 58.88 | **61.41** | 58.72 | 57.06 | 59.59 | +| | CommonsenseQA | 55.28 | 49.14 | **60.60** | 48.98 | 52.99 | +| Knowledge & Understanding | MMLU-CF (Average) | 44.13 | 42.93 | 41.32 | 39.11 | **47.65** | +| | MMLU Pro CF | 19.61 | 16.66 | 16.42 | 18.04 | **24.92** | +| | MMLU Pro MCF | 32.70 | 31.32 | 25.07 | 30.39 | **41.07** | +| | PIQA | **78.89** | 78.35 | 78.51 | 75.35 | 77.58 | +| | OpenBookQA | 40.60 | 40.20 | 42.00 | 36.40 | **42.40** | +| | BoolQ | **78.99** | 73.61 | 75.33 | 74.46 | 74.28 | +| **Math & Code** | | | | | | | +| Coding & math | HumanEval+ | 30.48 | 34.14| 25.00 | 43.29| **54.87** | +| | MBPP+ | 52.91 | 52.11 | 38.88| 59.25 | **63.75** | +| | MATH (4-shot) | 46.10 | 40.10 | 7.44 | 41.64 | **51.20** | +| | GSM8k (5-shot) | 67.63 | 70.13 | 25.92 | 65.88 | **74.14** | +| **Long context** | | | | | | | +| | Ruler 32k | 76.35 | 75.93 | 77.58 | 70.63 | **83.98** | +| | Ruler 64k | 67.85 | 64.90 | **72.93** | 57.18 | 60.29 | +| | Ruler 128k | 61.03 | 62.23 | **71.30** | 43.03 | 47.23 | + +#### Multilingual benchmarks + + + +| Category | Metric | SmolLM3 3B Base | Qwen2.5-3B | Llama3.2 3B | Qwen3 1.7B Base | Qwen3 4B Base | +|---------|--------|---------------------|------------|--------------|------------------|---------------| +| Main supported languages | | | | | | | | +| French| MLMM Hellaswag | **63.94** | 57.47 | 57.66 | 51.26 | 61.00 | +| | Belebele | 51.00 | 51.55 | 49.22 |49.44| **55.00** | +| | Global MMLU (CF) | 38.37 | 34.22 | 33.71 | 34.94 |**41.80** | +| | Flores-200 (5-shot) | 62.85| 61.38| 62.89 | 58.68 | **65.76** | +| Spanish| MLMM Hellaswag | **65.85** | 58.25 | 59.39 | 52.40 | 61.85 | +| | Belebele | 47.00 | 48.88 | 47.00 | 47.56 | **50.33** | +| | Global MMLU (CF) | 38.51 | 35.84 | 35.60 | 34.79 |**41.22** | +| | Flores-200 (5-shot) | 48.25| 50.00| 44.45 | 46.93 | **50.16** | +| German| MLMM Hellaswag | **59.56** | 49.99| 53.19|46.10| 56.43| +| | Belebele | 48.44 | 47.88 | 46.22 | 48.00 | **53.44**| +| | Global MMLU (CF) | 35.10 | 33.19 | 32.60 | 32.73 |**38.70** | +| | Flores-200 (5-shot) | **56.60**| 50.63| 54.95 | 52.58 | 50.48 | +| Italian| MLMM Hellaswag | **62.49** | 53.21 | 54.96 | 48.72 | 58.76 | +| | Belebele | 46.44 | 44.77 | 43.88 | 44.00 | **48.78** | 44.88 | +| | Global MMLU (CF) | 36.99 | 33.91 | 32.79 | 35.37 |**39.26** | +| | Flores-200 (5-shot) | 52.65| **54.87**| 48.83 | 48.37 | 49.11 | +| Portuguese| MLMM Hellaswag | **63.22** | 57.38 | 56.84 | 50.73 | 59.89 | +| | Belebele | 47.67 | **49.22** | 45.00 | 44.00 | 50.00 | 49.00 | +| | Global MMLU (CF) | 36.88 | 34.72 | 33.05 | 35.26 |**40.66** | +| | Flores-200 (5-shot) | 60.93 |57.68| 54.28 | 56.58 | **63.43** | + +The model has also been trained on Arabic (standard), Chinese and Russian data, but has seen fewer tokens in these languages compared to the 6 above. We report the performance on these langages for information. +| Category | Metric | SmolLM3 3B Base | Qwen2.5-3B | Llama3.2 3B | Qwen3 1.7B Base | Qwen3 4B Base | +|---------|--------|---------------------|------------|--------------|------------------|---------------| +| Other supported languages | | | | | | | | +| Arabic| Belebele | 40.22 | 44.22 | 45.33 | 42.33 | **51.78** | +| | Global MMLU (CF) | 28.57 | 28.81 | 27.67 | 29.37 | **31.85** | +| | Flores-200 (5-shot) | 40.22 | 39.44 | **44.43** | 35.82 | 39.76 | +| Chinese| Belebele | 43.78 | 44.56 | 49.56 | 48.78 | **53.22** | +| | Global MMLU (CF) | 36.16 | 33.79 | 39.57 | 38.56 | **44.55** | +| | Flores-200 (5-shot) | 29.17 | **33.21** | 31.89 | 25.70 | 32.50 | +| Russian| Belebele | 47.44 | 45.89 | 47.44 | 45.22 | **51.44** | +| | Global MMLU (CF) | 36.51 | 32.47 | 34.52 | 34.83 | **38.80** | +| | Flores-200 (5-shot) | 47.13 | 48.74 | 50.74 | 54.70 | **60.53** | + + +### Instruction Model + +#### No Extended Thinking +Evaluation results of non reasoning models and reasoning models in no thinking mode. We highlight the best and second-best scores in bold. +| Category | Metric | SmoLLM3-3B | Qwen2.5-3B | Llama3.1-3B | Qwen3-1.7B | Qwen3-4B | +|---------|--------|------------|------------|-------------|------------|----------| +| High school math competition | AIME 2025 | 9.3 | 2.9 | 0.3 | 8.0 | **17.1** | +| Math problem-solving | GSM-Plus | 72.8 | 74.1 | 59.2 | 68.3 | **82.1** | +| Competitive programming | LiveCodeBench v4 | 15.2 | 10.5 | 3.4 | 15.0 | **24.9** | +| Graduate-level reasoning | GPQA Diamond | 35.7 | 32.2 | 29.4 | 31.8 | **44.4** | +| Instruction following | IFEval | **76.7** | 65.6 | 71.6 | 74.0 | 68.9 | +| Alignment | MixEval Hard | 26.9 | 27.6 | 24.9 | 24.3 | **31.6** | +| Tool Calling | BFCL| 92.3 | - | 92.3 * | 89.5 | **95.0** | +| Multilingual Q&A | Global MMLU | 53.5 | 50.54 | 46.8 | 49.5 | **65.1** | + +(*): this is a tool calling finetune + +#### Extended Thinking +Evaluation results in reasoning mode for SmolLM3 and Qwen3 models: +| Category | Metric | SmoLLM3-3B | Qwen3-1.7B | Qwen3-4B | +|---------|--------|------------|------------|----------| +| High school math competition | AIME 2025 | 36.7 | 30.7 | **58.8** | +| Math problem-solving | GSM-Plus | 83.4 | 79.4 | **88.2** | +| Competitive programming | LiveCodeBench v4 | 30.0 | 34.4 | **52.9** | +| Graduate-level reasoning | GPQA Diamond | 41.7 | 39.9 | **55.3** | +| Instruction following | IFEval | 71.2 | 74.2 | **85.4** | +| Alignment | MixEval Hard | 30.8 | 33.9 | **38.0** | +| Tool Calling | BFCL | 88.8 | 88.8 | **95.5** | +| Multilingual Q&A | Global MMLU | 64.1 | 62.3 | **73.3** | + +## Training + +### Model + +- **Architecture:** Transformer decoder +- **Pretraining tokens:** 11T +- **Precision:** bfloat16 + +### Software & hardware + +- **GPUs:** 384 H100 +- **Training Framework:** [nanotron](https://github.com/huggingface/nanotron/tree/main) +- **Data processing framework:** [datatrove](https://github.com/huggingface/datatrove) +- **Evaluation framework:** [lighteval](https://github.com/huggingface/lighteval) +- **Post-training Framework:** [TRL](https://github.com/huggingface/trl) + +### Open resources +Here is an infographic with all the training details. +- The datasets used for pretraining can be found in this [collection](https://huggingface.co/collections/HuggingFaceTB/smollm3-pretraining-datasets-685a7353fdc01aecde51b1d9) and those used in mid-training and post-training will be released in the following weeks +- The training and evaluation configs and code can be found in the [huggingface/smollm](https://github.com/huggingface/smollm) repository. + + +![image/png](https://cdn-uploads.huggingface.co/production/uploads/651e96991b97c9f33d26bde6/1umKwihvgLPlj5_0xJ42j.png) + +## Limitations + +SmolLM3 can produce text on a variety of topics, but the generated content may not always be factually accurate, logically consistent, or free from biases present in the training data. These models should be used as assistive tools rather than definitive sources of information. Users should always verify important information and critically evaluate any generated content. + + +## License +[Apache 2.0](https://www.apache.org/licenses/LICENSE-2.0) \ No newline at end of file diff --git a/config.json b/config.json new file mode 100644 index 0000000..c5ea4a0 --- /dev/null +++ b/config.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47fb9eec6214e86967ac397952262b8b352a07e8c53b7cd98ca732e552fcab25 +size 2025 diff --git a/configuration.json b/configuration.json new file mode 100644 index 0000000..bbeeda1 --- /dev/null +++ b/configuration.json @@ -0,0 +1 @@ +{"framework": "pytorch", "task": "text-generation", "allow_remote": true} \ No newline at end of file diff --git a/generation_config.json b/generation_config.json new file mode 100644 index 0000000..c292333 --- /dev/null +++ b/generation_config.json @@ -0,0 +1,8 @@ +{ + "_from_model_config": true, + "bos_token_id": 128000, + "eos_token_id": 128001, + "max_length": 65536, + "pad_token_id": 128004, + "transformers_version": "4.53.2" +} diff --git a/model-00001-of-00002.safetensors b/model-00001-of-00002.safetensors new file mode 100644 index 0000000..81dcd69 --- /dev/null +++ b/model-00001-of-00002.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7e270ac568ee1880ddbadad66ccdcd9906d52415e8904e2f300c75250b9c7d49 +size 4966315264 diff --git a/model-00002-of-00002.safetensors b/model-00002-of-00002.safetensors new file mode 100644 index 0000000..0d3daab --- /dev/null +++ b/model-00002-of-00002.safetensors @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6a6e7690a66dcc386a6a9b456686e7c308d45cba884d116c928dafa7fa987ae +size 1183919744 diff --git a/model.safetensors.index.json b/model.safetensors.index.json new file mode 100644 index 0000000..963ccb2 --- /dev/null +++ b/model.safetensors.index.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3a7254c086c4a78f95ad5864f435d165ffed1ed8998326ce5107b4423c15b76 +size 26899 diff --git a/special_tokens_map.json b/special_tokens_map.json new file mode 100644 index 0000000..729e593 --- /dev/null +++ b/special_tokens_map.json @@ -0,0 +1,16 @@ +{ + "eos_token": { + "content": "<|end_of_text|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false + }, + "pad_token": { + "content": "<|finetune_right_pad_id|>", + "lstrip": false, + "normalized": false, + "rstrip": false, + "single_word": false + } +} diff --git a/tokenizer.json b/tokenizer.json new file mode 100644 index 0000000..0cd8b7f --- /dev/null +++ b/tokenizer.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab4da6b2aa68247e9c0fa9b97fc7fcc796505038d01f7e144522a65ce0dbd2e5 +size 17208861 diff --git a/tokenizer_config.json b/tokenizer_config.json new file mode 100644 index 0000000..d978345 --- /dev/null +++ b/tokenizer_config.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c4721bb58dff219fe6a7f16fb4f1b1ca79a04792b2794f144b8067894276315 +size 50494