File size: 8,749 Bytes
2e5c1b9
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
---
library_name: peft
license: apache-2.0
base_model: HuggingFaceTB/SmolLM3-3B
tags:
- axolotl
- base_model:adapter:HuggingFaceTB/SmolLM3-3B
- lora
- transformers
datasets:
- train_file.jsonl
pipeline_tag: text-generation
model-index:
- name: outputs/smollm3
  results: []
---

<!-- This model card has been generated automatically according to the information the Trainer had access to. You
should probably proofread and complete it, then remove this comment. -->

[<img src="https://raw.githubusercontent.com/axolotl-ai-cloud/axolotl/main/image/axolotl-badge-web.png" alt="Built with Axolotl" width="200" height="32"/>](https://github.com/axolotl-ai-cloud/axolotl)
<details><summary>See axolotl config</summary>

axolotl version: `0.11.0`
```yaml
# axolotl preprocess tasks/smollm3.yml
# axolotl train tasks/smollm3.yml
base_model: HuggingFaceTB/SmolLM3-3B

#adapter: lora
chat_template_jinja: |
  {# ───── defaults ───── #}
  {%- if enable_thinking is not defined -%}
  {%- set enable_thinking = true -%}
  {%- endif -%}

  {# ───── reasoning mode ───── #}
  {%- if enable_thinking -%}
    {%- set reasoning_mode = "/think" -%}
  {%- else -%}
    {%- set reasoning_mode = "/no_think" -%}
  {%- endif -%}

  {# ───── header (system message) ───── #}
  {{- "<|im_start|>system\n" -}}

  {%- if messages[0].role == "system" -%}
    {%- set system_message = messages[0].content -%}
    {%- if "/no_think" in system_message -%}
      {%- set reasoning_mode = "/no_think" -%}
    {%- elif "/think" in system_message -%}
      {%- set reasoning_mode = "/think" -%}
    {%- endif -%}
    {%- set custom_instructions = system_message.replace("/no_think", "").replace("/think", "").rstrip() -%}
  {%- endif -%}

  {%- if "/system_override" in system_message -%}
    {{- custom_instructions.replace("/system_override", "").rstrip() -}}
    {{- "<|im_end|>\n" -}}
  {%- else -%}
    {{- "## Metadata\n\n" -}}
    {{- "Knowledge Cutoff Date: June 2025\n" -}}
    {%- set today = strftime_now("%d %B %Y") -%}
    {{- "Today Date: " ~ today ~ "\n" -}}
    {{- "Reasoning Mode: " + reasoning_mode + "\n\n" -}}
    
    {{- "## Custom Instructions\n\n" -}}
    {%- if custom_instructions -%}
      {{- custom_instructions + "\n\n" -}}
    {%- elif reasoning_mode == "/think" -%}
      {{- "You are a helpful AI assistant named SmolLM, trained by Hugging Face. Your role as an assistant involves thoroughly exploring questions through a systematic thinking process before providing the final precise and accurate solutions. This requires engaging in a comprehensive cycle of analysis, summarizing, exploration, reassessment, reflection, backtracking, and iteration to develop well-considered thinking process. Please structure your response into two main sections: Thought and Solution using the specified format: <think> Thought section </think> Solution section. In the Thought section, detail your reasoning process in steps. Each step should include detailed considerations such as analysing questions, summarizing relevant findings, brainstorming new ideas, verifying the accuracy of the current steps, refining any errors, and revisiting previous steps. In the Solution section, based on various attempts, explorations, and reflections from the Thought section, systematically present the final solution that you deem correct. The Solution section should be logical, accurate, and concise and detail necessary steps needed to reach the conclusion.\n\n" -}}
    {%- else -%}
      {{- "You are a helpful AI assistant named SmolLM, trained by Hugging Face.\n\n" -}}
    {%- endif -%}

    {%- if xml_tools or python_tools or tools -%}
      {{- "### Tools\n\n" -}}
      {%- if xml_tools or tools -%}
        {%- if tools -%}
          {%- set xml_tools = tools -%}
        {%- endif -%}
        {%- set ns = namespace(xml_tool_string="You may call one or more functions to assist with the user query.\nYou are provided with function signatures within <tools></tools> XML tags:\n\n<tools>\n") -%}
        {%- for tool in xml_tools[:] -%} {# The slicing makes sure that xml_tools is a list #}
          {%- set ns.xml_tool_string = ns.xml_tool_string ~ (tool | string) ~ "\n" -%}
        {%- endfor -%}
        {%- set xml_tool_string = ns.xml_tool_string + "</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call>" -%}
        {{- xml_tool_string -}}
      {%- endif -%}
      {%- if python_tools -%}
        {%- set ns = namespace(python_tool_string="When you send a message containing Python code between '<code>' and '</code>' tags, it will be executed in a stateful Jupyter notebook environment, and you will then be given the output to continued reasoning in an agentic loop.\n\nYou can use the following tools in your python code like regular functions:\n<tools>\n") -%}
        {%- for tool in python_tools[:] -%} {# The slicing makes sure that python_tools is a list #}
          {%- set ns.python_tool_string = ns.python_tool_string ~ (tool | string) ~ "\n" -%}
        {%- endfor -%}
        {%- set python_tool_string = ns.python_tool_string + "</tools>\n\nThe state persists between code executions: so variables that you define in one step are still available thereafter." -%}
        {{- python_tool_string -}}
      {%- endif -%}
      {{- "\n\n" -}}
      {{- "<|im_end|>\n" -}}
    {%- endif -%}
  {%- endif -%}
  {# ───── main loop ───── #}
  {%- for message in messages -%}
      {%- set content = message.content if message.content is string else "" -%}
      {%- if message.role == "user" -%}
          {{ "<|im_start|>" + message.role + "\n"  + content + "<|im_end|>\n" }}
      {%- elif message.role == "assistant" -%}
          {% generation %}
          {%- if reasoning_mode == "/think" -%}
              {{ "<|im_start|>assistant\n" + content.lstrip("\n") + "<|im_end|>\n" }}
          {%- else -%}
              {{ "<|im_start|>assistant\n" + "<think>\n\n</think>\n" + content.lstrip("\n") + "<|im_end|>\n" }}
          {%- endif -%}
          {% endgeneration %}
      {%- elif message.role == "tool" -%}
      {{ "<|im_start|>" + "assistant\n"  + content + "<|im_end|>\n" }}
      {%- endif -%}
  {%- endfor -%}
  {# ───── generation prompt ───── #}
  {%- if add_generation_prompt -%}
      {%- if reasoning_mode == "/think" -%}
          {{ "<|im_start|>assistant\n" }}
      {%- else -%}
          {{ "<|im_start|>assistant\n" + "<think>\n\n</think>\n"  }}
      {%- endif -%}
  {%- endif -%}
datasets:
  - path: train_file.jsonl
    type: chat_template

dataset_prepared_path: last_run_prepared
val_set_size: 0.01
output_dir: ./outputs/smollm3

roles_to_train:
    - assistant
    - tool

adapter: lora
lora_r: 16
lora_alpha: 32
lora_dropout: 0.05
lora_target_linear: true

num_epochs: 2
learning_rate: 1e-4
optimizer: adamw_torch
lr_scheduler: cosine
flash_attention: true
sequence_len: 4096
logging_steps: 20
warmup_steps: 100
save_steps: 500
eval_steps: 500
save_total_limit: 2

batch_size: 1
micro_batch_size: 1
```

</details><br>

# outputs/smollm3

This model is a fine-tuned version of [HuggingFaceTB/SmolLM3-3B](https://huggingface.co/HuggingFaceTB/SmolLM3-3B) on the train_file.jsonl dataset.
It achieves the following results on the evaluation set:
- Loss: nan

## Model description

More information needed

## Intended uses & limitations

More information needed

## Training and evaluation data

More information needed

## Training procedure

### Training hyperparameters

The following hyperparameters were used during training:
- learning_rate: 0.0001
- train_batch_size: 1
- eval_batch_size: 1
- seed: 42
- optimizer: Use OptimizerNames.ADAMW_TORCH with betas=(0.9,0.999) and epsilon=1e-08 and optimizer_args=No additional optimizer arguments
- lr_scheduler_type: cosine
- lr_scheduler_warmup_steps: 100
- training_steps: 4204

### Training results

| Training Loss | Epoch  | Step | Validation Loss |
|:-------------:|:------:|:----:|:---------------:|
| No log        | 0      | 0    | nan             |
| 0.2444        | 0.2379 | 500  | nan             |
| 0.0655        | 0.4757 | 1000 | nan             |
| 0.7555        | 0.7136 | 1500 | nan             |
| 0.3809        | 0.9515 | 2000 | nan             |
| 0.0237        | 1.1893 | 2500 | nan             |
| 0.0749        | 1.4272 | 3000 | nan             |
| 0.0896        | 1.6651 | 3500 | nan             |
| 0.0           | 1.9029 | 4000 | nan             |


### Framework versions

- PEFT 0.16.0
- Transformers 4.53.3
- Pytorch 2.7.1+cu128
- Datasets 3.6.0
- Tokenizers 0.21.2