Commit
Β·
2193a60
1
Parent(s):
08b43db
add example of smollm finetune on synthetic data
Browse files
examples/fine-tune-smollm2-on-synthetic-data.ipynb
ADDED
@@ -0,0 +1,275 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"cells": [
|
3 |
+
{
|
4 |
+
"cell_type": "markdown",
|
5 |
+
"metadata": {},
|
6 |
+
"source": [
|
7 |
+
"# Fine-tune a SmolLM on domain specific synthetic data from an LLM\n",
|
8 |
+
"\n",
|
9 |
+
"Yes, smoll models can beat GPT4-like models on domain-specific tasks but don't expect miracles. When comparing smoll vs large, consider all costs and gains like difference performance and the value of using private and local models and data that you own. \n",
|
10 |
+
"\n",
|
11 |
+
"The [Hugging Face SmolLM models](https://github.com/huggingface/smollm) are blazingly fast and remarkably powerful. With its 135M, 360M and 1.7B parameter models, it is a great choice for a small and fast model. The great thing about SmolLM is that it is a general purpose model that can be fine-tuned on domain specific data. \n",
|
12 |
+
"\n",
|
13 |
+
"A lack of domain sepcific datasets is a common problem for smaller and more specialized models. This is because it is difficult to find a dataset that is both representative and diverse enough for a specific task. We solve this problem by generating a synthetic dataset from an LLM using the `synthetic-data-generator`, which is available as a [Hugging Face Space](https://huggingface.co/spaces/argilla/synthetic-data-generator) or on [GitHub](https://github.com/argilla-io/synthetic-data-generator).\n",
|
14 |
+
"\n",
|
15 |
+
"In this example, we will fine-tune a SmolLM2 model on a synthetic dataset generated from `meta-llama/Meta-Llama-3.1-8B-Instruct` with the `synthetic-data-generator`.\n",
|
16 |
+
"\n",
|
17 |
+
"## Install the dependencies\n",
|
18 |
+
"\n",
|
19 |
+
"We will instal some basic dependencies for the fine-tuning with `trl` but we will use the Synthetic Data Generator UI to generate the synthetic dataset."
|
20 |
+
]
|
21 |
+
},
|
22 |
+
{
|
23 |
+
"cell_type": "code",
|
24 |
+
"execution_count": null,
|
25 |
+
"metadata": {},
|
26 |
+
"outputs": [],
|
27 |
+
"source": [
|
28 |
+
"!pip install transformers datasets trl torch"
|
29 |
+
]
|
30 |
+
},
|
31 |
+
{
|
32 |
+
"cell_type": "markdown",
|
33 |
+
"metadata": {},
|
34 |
+
"source": [
|
35 |
+
"## The problem\n",
|
36 |
+
"\n",
|
37 |
+
"Reasoning data has proven to be a fundamental change for the performance of generative models. Reasoning is amazing but it also means the model generates more \"chatty\" during the token generation process, causing the model to become slower and more expensive. For this reason, we want to create a model that can reason without being too chatty. Therefore, we will generate a concise reasoning dataset and fine-tune a SmolLM2 model on it.\n",
|
38 |
+
"\n",
|
39 |
+
"## Let's generate some data\n",
|
40 |
+
"\n",
|
41 |
+
"Let's go to the [hosted Hugging Face Space](https://huggingface.co/spaces/argilla/synthetic-data-generator) to generate the data. This is done in three steps 1) we come up with a dataset description, 2) iterate on the task configuration, and 3) generate and push the data to Hugging Face. A more detailed flow can be found in [this blogpost](https://huggingface.co/blog/synthetic-data-generator). \n",
|
42 |
+
"\n",
|
43 |
+
"<iframe\n",
|
44 |
+
"\tsrc=\"https://argilla-synthetic-data-generator.hf.space\"\n",
|
45 |
+
"\tframeborder=\"0\"\n",
|
46 |
+
"\twidth=\"850\"\n",
|
47 |
+
"\theight=\"450\"\n",
|
48 |
+
"></iframe>\n",
|
49 |
+
"\n",
|
50 |
+
"For this example, we will generate 5000 chat data examples for a single turn in the conversation. All examples have been generated with a temperature of 1. After some iteration, we come up with the following system prompt:\n",
|
51 |
+
"\n",
|
52 |
+
"```\n",
|
53 |
+
"You are an AI assistant who provides brief and to-the-point responses with logical step-by-step reasoning. Your purpose is to offer straightforward explanations and answers, stripping away unnecessary details to get to the heart of the issue. Respond with extremely concise, direct justifications and evidence-based conclusions. User questions are direct and concise.\n",
|
54 |
+
"```\n",
|
55 |
+
"\n",
|
56 |
+
"We press the \"Push to Hub\" button and wait for the data to be generated. This takes a few hours and we end up with a dataset with 5000 examples, which is the maximum examples we can generate in a single run. You can scale this by deploying a private instance of the Synthetic Data Generator. \n",
|
57 |
+
"\n",
|
58 |
+
"<iframe\n",
|
59 |
+
" src=\"https://huggingface.co/datasets/argilla/synthetic-concise-reasoning-sft-filtered/embed/viewer/default/train\"\n",
|
60 |
+
" frameborder=\"0\"\n",
|
61 |
+
" width=\"100%\"\n",
|
62 |
+
" height=\"560px\"\n",
|
63 |
+
"></iframe>\n",
|
64 |
+
"\n",
|
65 |
+
"The data is pushed to Argilla too so we recommend inspecting and validating the the data before finetuning the actual model. We applied some basic filters and transformations to the data to make it more suitable for fine-tuning.\n",
|
66 |
+
"\n",
|
67 |
+
"## Fine-tune the model\n",
|
68 |
+
"\n",
|
69 |
+
"We will use TRL to fine-tune the model. It is part of the Hugging Face ecosystem and works seamlessly on top of datasets generated by the synthetic data generator without needing to do any data transformations.\n",
|
70 |
+
"\n",
|
71 |
+
"### Load the model\n",
|
72 |
+
"\n",
|
73 |
+
"We will first load the model and tokenizer, and set up the chat format."
|
74 |
+
]
|
75 |
+
},
|
76 |
+
{
|
77 |
+
"cell_type": "code",
|
78 |
+
"execution_count": 1,
|
79 |
+
"metadata": {},
|
80 |
+
"outputs": [
|
81 |
+
{
|
82 |
+
"name": "stderr",
|
83 |
+
"output_type": "stream",
|
84 |
+
"text": [
|
85 |
+
"/Users/davidberenstein/Documents/programming/argilla/synthetic-data-generator/.venv/lib/python3.11/site-packages/tqdm/auto.py:21: TqdmWarning: IProgress not found. Please update jupyter and ipywidgets. See https://ipywidgets.readthedocs.io/en/stable/user_install.html\n",
|
86 |
+
" from .autonotebook import tqdm as notebook_tqdm\n"
|
87 |
+
]
|
88 |
+
}
|
89 |
+
],
|
90 |
+
"source": [
|
91 |
+
"# Import necessary libraries\n",
|
92 |
+
"from transformers import AutoModelForCausalLM, AutoTokenizer\n",
|
93 |
+
"from datasets import load_dataset\n",
|
94 |
+
"from trl import SFTConfig, SFTTrainer, setup_chat_format\n",
|
95 |
+
"import torch\n",
|
96 |
+
"import os\n",
|
97 |
+
"\n",
|
98 |
+
"device = (\n",
|
99 |
+
" \"cuda\"\n",
|
100 |
+
" if torch.cuda.is_available()\n",
|
101 |
+
" else \"mps\" if torch.backends.mps.is_available() else \"cpu\"\n",
|
102 |
+
")\n",
|
103 |
+
"\n",
|
104 |
+
"# Load the model and tokenizer\n",
|
105 |
+
"model_name = \"HuggingFaceTB/SmolLM2-360M\"\n",
|
106 |
+
"model = AutoModelForCausalLM.from_pretrained(\n",
|
107 |
+
" pretrained_model_name_or_path=model_name\n",
|
108 |
+
")\n",
|
109 |
+
"tokenizer = AutoTokenizer.from_pretrained(pretrained_model_name_or_path=model_name)\n",
|
110 |
+
"\n",
|
111 |
+
"# Set up the chat format\n",
|
112 |
+
"model, tokenizer = setup_chat_format(model=model, tokenizer=tokenizer)"
|
113 |
+
]
|
114 |
+
},
|
115 |
+
{
|
116 |
+
"cell_type": "markdown",
|
117 |
+
"metadata": {},
|
118 |
+
"source": [
|
119 |
+
"### Test the base model\n",
|
120 |
+
"\n",
|
121 |
+
"We will first test the base model to see how it performs on the task. During this step we will also generate a prompt for the model to respond to, to see how it performs on the task."
|
122 |
+
]
|
123 |
+
},
|
124 |
+
{
|
125 |
+
"cell_type": "code",
|
126 |
+
"execution_count": 2,
|
127 |
+
"metadata": {},
|
128 |
+
"outputs": [
|
129 |
+
{
|
130 |
+
"name": "stderr",
|
131 |
+
"output_type": "stream",
|
132 |
+
"text": [
|
133 |
+
"Device set to use mps:0\n"
|
134 |
+
]
|
135 |
+
},
|
136 |
+
{
|
137 |
+
"data": {
|
138 |
+
"text/plain": [
|
139 |
+
"[{'generated_text': 'What is the primary function of mitochondria within a cell?\\n\\nMitochondria are the powerhouses of the cell. They are responsible for the production of ATP (adenosine triphosphate) and the energy required for cellular processes.\\n\\nWhat is the function of the mitochondria in the cell?\\n\\nThe mitochondria are the powerhouses of the cell. They are responsible for the production of ATP (adenosine triphosphate) and the energy required for cellular processes.\\n\\nWhat is the function of the mitochondria in the cell?\\n\\nThe'}]"
|
140 |
+
]
|
141 |
+
},
|
142 |
+
"execution_count": 2,
|
143 |
+
"metadata": {},
|
144 |
+
"output_type": "execute_result"
|
145 |
+
}
|
146 |
+
],
|
147 |
+
"source": [
|
148 |
+
"from transformers import pipeline\n",
|
149 |
+
"# Let's test the base model before training\n",
|
150 |
+
"prompt = \"What is the primary function of mitochondria within a cell?\"\n",
|
151 |
+
"\n",
|
152 |
+
"pipe = pipeline(\"text-generation\", model=model, tokenizer=tokenizer, device=device)\n",
|
153 |
+
"pipe(prompt, max_new_tokens=100)"
|
154 |
+
]
|
155 |
+
},
|
156 |
+
{
|
157 |
+
"cell_type": "markdown",
|
158 |
+
"metadata": {},
|
159 |
+
"source": [
|
160 |
+
"### Load the dataset\n",
|
161 |
+
"\n",
|
162 |
+
"For fine-tuning, we need to load the dataset and tokenize it. We will use the `synthetic-concise-reasoning-sft-filtered` dataset that we generated in the previous step."
|
163 |
+
]
|
164 |
+
},
|
165 |
+
{
|
166 |
+
"cell_type": "code",
|
167 |
+
"execution_count": 2,
|
168 |
+
"metadata": {},
|
169 |
+
"outputs": [
|
170 |
+
{
|
171 |
+
"name": "stderr",
|
172 |
+
"output_type": "stream",
|
173 |
+
"text": [
|
174 |
+
"Map: 100%|ββββββββββ| 4133/4133 [00:00<00:00, 18478.53 examples/s]\n"
|
175 |
+
]
|
176 |
+
}
|
177 |
+
],
|
178 |
+
"source": [
|
179 |
+
"from datasets import load_dataset\n",
|
180 |
+
"\n",
|
181 |
+
"ds = load_dataset(\"argilla/synthetic-concise-reasoning-sft-filtered\")\n",
|
182 |
+
"def tokenize_function(examples):\n",
|
183 |
+
" examples[\"text\"] = tokenizer.apply_chat_template([{\"role\": \"user\", \"content\": examples[\"prompt\"].strip()}, {\"role\": \"assistant\", \"content\": examples[\"completion\"].strip()}], tokenize=False)\n",
|
184 |
+
" return examples\n",
|
185 |
+
"ds = ds.map(tokenize_function)\n",
|
186 |
+
"ds = ds.shuffle()"
|
187 |
+
]
|
188 |
+
},
|
189 |
+
{
|
190 |
+
"cell_type": "code",
|
191 |
+
"execution_count": null,
|
192 |
+
"metadata": {},
|
193 |
+
"outputs": [],
|
194 |
+
"source": [
|
195 |
+
"os.environ[\"PYTORCH_MPS_HIGH_WATERMARK_RATIO\"] = \"0.0\"\n",
|
196 |
+
"\n",
|
197 |
+
"# Configure the SFTTrainer\n",
|
198 |
+
"sft_config = SFTConfig(\n",
|
199 |
+
" output_dir=\"./sft_output\",\n",
|
200 |
+
" num_train_epochs=1,\n",
|
201 |
+
" per_device_train_batch_size=4, # Set according to your GPU memory capacity\n",
|
202 |
+
" learning_rate=5e-5, # Common starting point for fine-tuning\n",
|
203 |
+
" logging_steps=100, # Frequency of logging training metrics\n",
|
204 |
+
" use_mps_device= True if device == \"mps\" else False,\n",
|
205 |
+
" hub_model_id=\"argilla/SmolLM2-360M-synthetic-concise-reasoning\", # Set a unique name for your model\n",
|
206 |
+
" push_to_hub=True,\n",
|
207 |
+
")\n",
|
208 |
+
"\n",
|
209 |
+
"# Initialize the SFTTrainer\n",
|
210 |
+
"trainer = SFTTrainer(\n",
|
211 |
+
" model=model,\n",
|
212 |
+
" args=sft_config,\n",
|
213 |
+
" train_dataset=ds[\"train\"],\n",
|
214 |
+
" tokenizer=tokenizer,\n",
|
215 |
+
")\n",
|
216 |
+
"trainer.train()"
|
217 |
+
]
|
218 |
+
},
|
219 |
+
{
|
220 |
+
"cell_type": "markdown",
|
221 |
+
"metadata": {},
|
222 |
+
"source": [
|
223 |
+
"For the example, we did not use a specific validation set but we can see the loss is decreasing, so we assume the model is generalzing well to the training data. To get a better understanding of the model's performance, let's test it again with the same prompt. \n",
|
224 |
+
"\n",
|
225 |
+
"### Run inference\n",
|
226 |
+
"\n",
|
227 |
+
"We can now run inference with the fine-tuned model."
|
228 |
+
]
|
229 |
+
},
|
230 |
+
{
|
231 |
+
"cell_type": "code",
|
232 |
+
"execution_count": null,
|
233 |
+
"metadata": {},
|
234 |
+
"outputs": [],
|
235 |
+
"source": [
|
236 |
+
"pipe = pipeline(\"text-generation\", model=model, tokenizer=tokenizer)\n",
|
237 |
+
"pipe(prompt, max_new_tokens=100)"
|
238 |
+
]
|
239 |
+
},
|
240 |
+
{
|
241 |
+
"cell_type": "markdown",
|
242 |
+
"metadata": {},
|
243 |
+
"source": [
|
244 |
+
"## Conclusion\n",
|
245 |
+
"\n",
|
246 |
+
"We have fine-tuned a SmolLM2 model on a synthetic dataset generated from a large language model. We have seen that the model performs well on the task and that the synthetic data is a great way to generate diverse and representative data for supervised fine-tuning. \n",
|
247 |
+
"\n",
|
248 |
+
"In practise, you would likely want to spend more time on on the data quality and fine-tuning the model but the flow shows the Synthetic Data Generator is a great tool to generate synthetic data for any task.\n",
|
249 |
+
"\n",
|
250 |
+
"Overall, I think it is pretty cool for one of our generation and fine-tuning on consumer hardware."
|
251 |
+
]
|
252 |
+
}
|
253 |
+
],
|
254 |
+
"metadata": {
|
255 |
+
"kernelspec": {
|
256 |
+
"display_name": ".venv",
|
257 |
+
"language": "python",
|
258 |
+
"name": "python3"
|
259 |
+
},
|
260 |
+
"language_info": {
|
261 |
+
"codemirror_mode": {
|
262 |
+
"name": "ipython",
|
263 |
+
"version": 3
|
264 |
+
},
|
265 |
+
"file_extension": ".py",
|
266 |
+
"mimetype": "text/x-python",
|
267 |
+
"name": "python",
|
268 |
+
"nbconvert_exporter": "python",
|
269 |
+
"pygments_lexer": "ipython3",
|
270 |
+
"version": "3.11.9"
|
271 |
+
}
|
272 |
+
},
|
273 |
+
"nbformat": 4,
|
274 |
+
"nbformat_minor": 2
|
275 |
+
}
|