aashish1904 commited on
Commit
1bce494
·
verified ·
1 Parent(s): 1d913bc

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-360M-GGUF
15
+ This is quantized version of [HuggingFaceTB/SmolLM2-360M](https://huggingface.co/HuggingFaceTB/SmolLM2-360M) created using llama.cpp
16
+
17
+ # Original Model Card
18
+
19
+
20
+
21
+ # SmolLM2
22
+
23
+
24
+ ![image/png](https://cdn-uploads.huggingface.co/production/uploads/61c141342aac764ce1654e43/gWt7M-JN62oXRpO-nQGo_.png)
25
+
26
+ ## Table of Contents
27
+
28
+ 1. [Model Summary](##model-summary)
29
+ 2. [Limitations](##limitations)
30
+ 3. [Training](##training)
31
+ 4. [License](##license)
32
+ 5. [Citation](##citation)
33
+
34
+ ## Model Summary
35
+
36
+ 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.
37
+
38
+ SmolLM2 demonstrates significant advances over its predecessor SmolLM1, particularly in instruction following, knowledge, reasoning. The 360M model was trained on 4 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).
39
+
40
+ 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).
41
+
42
+ ### How to use
43
+
44
+ ```bash
45
+ pip install transformers
46
+ ```
47
+
48
+ #### Running the model on CPU/GPU/multi GPU
49
+ * _Using full precision_
50
+ ```python
51
+ # pip install transformers
52
+ from transformers import AutoModelForCausalLM, AutoTokenizer
53
+ checkpoint = "HuggingFaceTB/SmolLM2-360M"
54
+ device = "cuda" # for GPU usage or "cpu" for CPU usage
55
+ tokenizer = AutoTokenizer.from_pretrained(checkpoint)
56
+ # for multiple GPUs install accelerate and do `model = AutoModelForCausalLM.from_pretrained(checkpoint, device_map="auto")`
57
+ model = AutoModelForCausalLM.from_pretrained(checkpoint).to(device)
58
+ inputs = tokenizer.encode("Gravity is", return_tensors="pt").to(device)
59
+ outputs = model.generate(inputs)
60
+ print(tokenizer.decode(outputs[0]))
61
+ ```
62
+
63
+ * _Using `torch.bfloat16`_
64
+ ```python
65
+ # pip install accelerate
66
+ import torch
67
+ from transformers import AutoTokenizer, AutoModelForCausalLM
68
+ checkpoint = "HuggingFaceTB/SmolLM2-360M"
69
+ tokenizer = AutoTokenizer.from_pretrained(checkpoint)
70
+ # for fp16 use `torch_dtype=torch.float16` instead
71
+ model = AutoModelForCausalLM.from_pretrained(checkpoint, device_map="auto", torch_dtype=torch.bfloat16)
72
+ inputs = tokenizer.encode("Gravity is", return_tensors="pt").to("cuda")
73
+ outputs = model.generate(inputs)
74
+ print(tokenizer.decode(outputs[0]))
75
+ ```
76
+ ```bash
77
+ >>> print(f"Memory footprint: {model.get_memory_footprint() / 1e6:.2f} MB")
78
+ Memory footprint: 723.56 MB
79
+ ```
80
+
81
+ ## Evaluation
82
+
83
+ 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.
84
+
85
+ ## Base Pre-Trained Model
86
+
87
+ | Metrics | SmolLM2-360M | Qwen2.5-0.5B | SmolLM-360M |
88
+ |:-------------------|:------------:|:------------:|:------------:|
89
+ | HellaSwag | **54.5** | 51.2 | 51.8 |
90
+ | ARC (Average) | **53.0** | 45.4 | 50.1 |
91
+ | PIQA | **71.7** | 69.9 | 71.6 |
92
+ | MMLU (cloze) | **35.8** | 33.7 | 34.4 |
93
+ | CommonsenseQA | **38.0** | 31.6 | 35.3 |
94
+ | TriviaQA | **16.9** | 4.3 | 9.1 |
95
+ | Winogrande | 52.5 | **54.1** | 52.8 |
96
+ | OpenBookQA | **37.4** | **37.4** | 37.2 |
97
+ | GSM8K (5-shot) | 3.2 | **33.4** | 1.6 |
98
+
99
+
100
+ ## Instruction Model
101
+
102
+ | Metric | SmolLM2-360M-Instruct | Qwen2.5-0.5B-Instruct | SmolLM-360M-Instruct |
103
+ |:-----------------------------|:---------------------:|:---------------------:|:---------------------:|
104
+ | IFEval (Average prompt/inst) | **41.0** | 31.6 | 19.8 |
105
+ | MT-Bench | 3.66 | **4.16** | 3.37 |
106
+ | HellaSwag | **52.1** | 48.0 | 47.9 |
107
+ | ARC (Average) | **43.7** | 37.3 | 38.8 |
108
+ | PIQA | **70.8** | 67.2 | 69.4 |
109
+ | MMLU (cloze) | **32.8** | 31.7 | 30.6 |
110
+ | BBH (3-shot) | 27.3 | **30.7** | 24.4 |
111
+ | GSM8K (5-shot) | 7.43 | **26.8** | 1.36 |
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:** 4T
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
+ ```