aashish1904 commited on
Commit
cac6455
·
verified ·
1 Parent(s): 1ba9e4d

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +145 -0
README.md ADDED
@@ -0,0 +1,145 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ ---
3
+
4
+ library_name: transformers
5
+ license: apache-2.0
6
+ language:
7
+ - en
8
+
9
+ ---
10
+
11
+ [![QuantFactory Banner](https://lh7-rt.googleusercontent.com/docsz/AD_4nXeiuCm7c8lEwEJuRey9kiVZsRn2W-b4pWlu3-X534V3YmVuVc2ZL-NXg2RkzSOOS2JXGHutDuyyNAUtdJI65jGTo8jT9Y99tMi4H4MqL44Uc5QKG77B0d6-JfIkZHFaUA71-RtjyYZWVIhqsNZcx8-OMaA?key=xt3VSDoCbmTY7o-cwwOFwQ)](https://hf.co/QuantFactory)
12
+
13
+
14
+ # QuantFactory/SmolLM2-135M-GGUF
15
+ This is quantized version of [HuggingFaceTB/SmolLM2-135M](https://huggingface.co/HuggingFaceTB/SmolLM2-135M) created using llama.cpp
16
+
17
+ # Original Model Card
18
+
19
+
20
+
21
+ # SmolLM2
22
+
23
+ ![image/png](https://cdn-uploads.huggingface.co/production/uploads/61c141342aac764ce1654e43/XtSR4NkriicR6fGiWGowZ.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 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
+
41
+ ### How to use
42
+
43
+ ```bash
44
+ pip install transformers
45
+ ```
46
+
47
+ #### Running the model on CPU/GPU/multi GPU
48
+ * _Using full precision_
49
+ ```python
50
+ # pip install transformers
51
+ from transformers import AutoModelForCausalLM, AutoTokenizer
52
+ checkpoint = "HuggingFaceTB/SmolLM2-135M"
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
+ inputs = tokenizer.encode("Gravity is", return_tensors="pt").to(device)
58
+ outputs = model.generate(inputs)
59
+ print(tokenizer.decode(outputs[0]))
60
+ ```
61
+
62
+ * _Using `torch.bfloat16`_
63
+ ```python
64
+ # pip install accelerate
65
+ import torch
66
+ from transformers import AutoTokenizer, AutoModelForCausalLM
67
+ checkpoint = "HuggingFaceTB/SmolLM2-135M"
68
+ tokenizer = AutoTokenizer.from_pretrained(checkpoint)
69
+ # for fp16 use `torch_dtype=torch.float16` instead
70
+ model = AutoModelForCausalLM.from_pretrained(checkpoint, device_map="auto", torch_dtype=torch.bfloat16)
71
+ inputs = tokenizer.encode("Gravity is", return_tensors="pt").to("cuda")
72
+ outputs = model.generate(inputs)
73
+ print(tokenizer.decode(outputs[0]))
74
+ ```
75
+ ```bash
76
+ >>> print(f"Memory footprint: {model.get_memory_footprint() / 1e6:.2f} MB")
77
+ Memory footprint: 723.56 MB
78
+ ```
79
+
80
+ ## Evaluation
81
+
82
+ 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.
83
+
84
+ ## Base pre-trained model
85
+
86
+ | Metrics | SmolLM2-135M-8k | SmolLM-135M |
87
+ |:-------------------|:----------------:|:------------:|
88
+ | HellaSwag | **42.1** | 41.2 |
89
+ | ARC (Average) | **43.9** | 42.4 |
90
+ | PIQA | 68.4 | 68.4 |
91
+ | MMLU (cloze) | **31.5** | 30.2 |
92
+ | CommonsenseQA | **33.9** | 32.7 |
93
+ | TriviaQA | 4.1 | **4.3** |
94
+ | Winogrande | 51.3 | 51.3 |
95
+ | OpenBookQA | **34.6** | 34.0 |
96
+ | GSM8K (5-shot) | **1.4** | 1.0 |
97
+
98
+
99
+ ## Instruction model
100
+
101
+ | Metric | SmolLM2-135M-Instruct | SmolLM-135M-Instruct |
102
+ |:-----------------------------|:---------------------:|:--------------------:|
103
+ | IFEval (Average prompt/inst) | **29.9** | 17.2 |
104
+ | MT-Bench | **1.98** | 1.68 |
105
+ | HellaSwag | **40.9** | 38.9 |
106
+ | ARC (Average) | **37.3** | 33.9 |
107
+ | PIQA | **66.3** | 64.0 |
108
+ | MMLU (cloze) | **29.3** | 28.3 |
109
+ | BBH (3-shot) | **28.2** | 25.2 |
110
+ | GSM8K (5-shot) | 1.4 | 1.4 |
111
+
112
+
113
+
114
+ ## Limitations
115
+
116
+ 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.
117
+
118
+ ## Training
119
+
120
+ ### Model
121
+
122
+ - **Architecture:** Transformer decoder
123
+ - **Pretraining tokens:** 2T
124
+ - **Precision:** bfloat16
125
+
126
+ ### Hardware
127
+
128
+ - **GPUs:** 64 H100
129
+
130
+ ### Software
131
+
132
+ - **Training Framework:** [nanotron](https://github.com/huggingface/nanotron/tree/main)
133
+
134
+ ## License
135
+
136
+ [Apache 2.0](https://www.apache.org/licenses/LICENSE-2.0)
137
+
138
+ ## Citation
139
+ ```bash
140
+ @misc{allal2024SmolLM2,
141
+ title={SmolLM2 - with great data, comes great performance},
142
+ 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},
143
+ year={2024},
144
+ }
145
+ ```