professorf commited on
Commit
f8b5bcf
·
verified ·
1 Parent(s): 6a113fe

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +138 -0
README.md ADDED
@@ -0,0 +1,138 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ library_name: transformers
3
+ license: apache-2.0
4
+ language:
5
+ - en
6
+ pipeline_tag: text-generation
7
+ tags:
8
+ - safetensors
9
+ - onnx
10
+ - transformers.js
11
+ base_model:
12
+ - HuggingFaceTB/SmolLM2-135M
13
+ ---
14
+
15
+ <hr>
16
+ <center>GGUF Quantized SmolLM-135M-Instruct Models<br>
17
+ by Professor Nick V. Flor<br>
18
+ For research reproducibility purposes</center>
19
+ <hr>
20
+
21
+ # SmolLM2
22
+
23
+ ![image/png](https://cdn-uploads.huggingface.co/production/uploads/61c141342aac764ce1654e43/3ntM63zkmxY2cNRhgY_Kl.png)
24
+
25
+ ## Table of Contents
26
+
27
+ 1. [Model Summary](##model-summary)
28
+ 2. [Limitations](##limitations)
29
+ 3. [Training](##training)
30
+ 4. [License](##license)
31
+ 5. [Citation](##citation)
32
+
33
+ ## Model Summary
34
+
35
+ SmolLM2 is a family of compact language models available in three size: 135M, 360M, and 1.7B parameters. They are capable of solving a wide range of tasks while being lightweight enough to run on-device.
36
+
37
+ SmolLM2 demonstrates significant advances over its predecessor SmolLM1, particularly in instruction following, knowledge, reasoning. The 135M model was trained on 2 trillion tokens using a diverse dataset combination: FineWeb-Edu, DCLM, The Stack, along with new filtered datasets we curated and will release soon. We developed the instruct version through supervised fine-tuning (SFT) using a combination of public datasets and our own curated datasets. We then applied Direct Preference Optimization (DPO) using [UltraFeedback](https://huggingface.co/datasets/HuggingFaceH4/ultrafeedback_binarized).
38
+
39
+ The instruct model additionally supports tasks such as text rewriting, summarization and function calling (for the 1.7B) thanks to datasets developed by [Argilla](https://huggingface.co/argilla) such as [Synth-APIGen-v0.1](https://huggingface.co/datasets/argilla/Synth-APIGen-v0.1).
40
+ You can find the SFT dataset here: https://huggingface.co/datasets/HuggingFaceTB/smol-smoltalk and finetuning code at https://github.com/huggingface/alignment-handbook/tree/main/recipes/smollm2
41
+
42
+ ### How to use
43
+
44
+ ### Transformers
45
+ ```bash
46
+ pip install transformers
47
+ ```
48
+
49
+ ```python
50
+ from transformers import AutoModelForCausalLM, AutoTokenizer
51
+ checkpoint = "HuggingFaceTB/SmolLM2-135M-Instruct"
52
+
53
+ device = "cuda" # for GPU usage or "cpu" for CPU usage
54
+ tokenizer = AutoTokenizer.from_pretrained(checkpoint)
55
+ # for multiple GPUs install accelerate and do `model = AutoModelForCausalLM.from_pretrained(checkpoint, device_map="auto")`
56
+ model = AutoModelForCausalLM.from_pretrained(checkpoint).to(device)
57
+
58
+ messages = [{"role": "user", "content": "What is gravity?"}]
59
+ input_text=tokenizer.apply_chat_template(messages, tokenize=False)
60
+ print(input_text)
61
+ inputs = tokenizer.encode(input_text, return_tensors="pt").to(device)
62
+ outputs = model.generate(inputs, max_new_tokens=50, temperature=0.2, top_p=0.9, do_sample=True)
63
+ print(tokenizer.decode(outputs[0]))
64
+ ```
65
+
66
+ ### Chat in TRL
67
+ You can also use the TRL CLI to chat with the model from the terminal:
68
+ ```bash
69
+ pip install trl
70
+ trl chat --model_name_or_path HuggingFaceTB/SmolLM2-135M-Instruct --device cpu
71
+ ```
72
+
73
+ ## Evaluation
74
+
75
+ In this section, we report the evaluation results of SmolLM2. All evaluations are zero-shot unless stated otherwise, and we use [lighteval](https://github.com/huggingface/lighteval) to run them.
76
+
77
+ ## Base pre-trained model
78
+
79
+ | Metrics | SmolLM2-135M-8k | SmolLM-135M |
80
+ |:-------------------|:----------------:|:------------:|
81
+ | HellaSwag | **42.1** | 41.2 |
82
+ | ARC (Average) | **43.9** | 42.4 |
83
+ | PIQA | 68.4 | 68.4 |
84
+ | MMLU (cloze) | **31.5** | 30.2 |
85
+ | CommonsenseQA | **33.9** | 32.7 |
86
+ | TriviaQA | 4.1 | **4.3** |
87
+ | Winogrande | 51.3 | 51.3 |
88
+ | OpenBookQA | **34.6** | 34.0 |
89
+ | GSM8K (5-shot) | **1.4** | 1.0 |
90
+
91
+
92
+ ## Instruction model
93
+
94
+ | Metric | SmolLM2-135M-Instruct | SmolLM-135M-Instruct |
95
+ |:-----------------------------|:---------------------:|:--------------------:|
96
+ | IFEval (Average prompt/inst) | **29.9** | 17.2 |
97
+ | MT-Bench | **19.8** | 16.8 |
98
+ | HellaSwag | **40.9** | 38.9 |
99
+ | ARC (Average) | **37.3** | 33.9 |
100
+ | PIQA | **66.3** | 64.0 |
101
+ | MMLU (cloze) | **29.3** | 28.3 |
102
+ | BBH (3-shot) | **28.2** | 25.2 |
103
+ | GSM8K (5-shot) | 1.4 | 1.4 |
104
+
105
+
106
+
107
+ ## Limitations
108
+
109
+ SmolLM2 models primarily understand and generate content in English. They 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.
110
+
111
+ ## Training
112
+
113
+ ### Model
114
+
115
+ - **Architecture:** Transformer decoder
116
+ - **Pretraining tokens:** 2T
117
+ - **Precision:** bfloat16
118
+
119
+ ### Hardware
120
+
121
+ - **GPUs:** 64 H100
122
+
123
+ ### Software
124
+
125
+ - **Training Framework:** [nanotron](https://github.com/huggingface/nanotron/tree/main)
126
+
127
+ ## License
128
+
129
+ [Apache 2.0](https://www.apache.org/licenses/LICENSE-2.0)
130
+
131
+ ## Citation
132
+ ```bash
133
+ @misc{allal2024SmolLM2,
134
+ title={SmolLM2 - with great data, comes great performance},
135
+ author={Loubna Ben Allal and Anton Lozhkov and Elie Bakouch and Gabriel Martín Blázquez and Lewis Tunstall and Agustín Piqueres and Andres Marafioti and Cyril Zakka and Leandro von Werra and Thomas Wolf},
136
+ year={2024},
137
+ }
138
+ ```