File size: 6,026 Bytes
488f2e6
 
 
 
 
 
 
 
 
 
 
6d1d3db
488f2e6
 
 
6d1d3db
488f2e6
 
 
 
 
 
 
 
 
 
 
 
 
6d1d3db
488f2e6
6d1d3db
 
 
488f2e6
 
 
 
 
 
 
 
 
 
 
 
 
6d1d3db
488f2e6
 
 
 
 
 
 
 
 
 
 
 
 
 
6d1d3db
 
488f2e6
6d1d3db
488f2e6
 
6d1d3db
488f2e6
 
6d1d3db
488f2e6
 
 
 
 
 
 
 
 
 
 
6d1d3db
488f2e6
 
 
 
 
 
 
 
 
 
 
 
 
 
6d1d3db
488f2e6
6d1d3db
488f2e6
6d1d3db
488f2e6
6d1d3db
 
 
 
 
 
 
 
 
 
488f2e6
6d1d3db
488f2e6
6d1d3db
 
 
 
 
 
 
 
 
488f2e6
6d1d3db
488f2e6
6d1d3db
488f2e6
6d1d3db
488f2e6
6d1d3db
488f2e6
6d1d3db
 
 
488f2e6
6d1d3db
488f2e6
6d1d3db
488f2e6
6d1d3db
488f2e6
6d1d3db
488f2e6
6d1d3db
488f2e6
6d1d3db
488f2e6
6d1d3db
488f2e6
 
 
 
 
 
 
 
 
 
 
6d1d3db
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
---
library_name: transformers
license: apache-2.0
language:
- en
pipeline_tag: text-generation
tags:
- safetensors
- onnx
- transformers.js
base_model:
- Dimonomi/BWork-LLM
---


# BWork-LLM

![image/png](https://cdn-uploads.huggingface.co/production/uploads/61c141342aac764ce1654e43/3ntM63zkmxY2cNRhgY_Kl.png)

##  Table of Contents

1. [Model Summary](##model-summary)
2. [Limitations](##limitations)
3. [Training](##training)
4. [License](##license)
5. [Citation](##citation)

## Model Summary

BWork-LLM 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. More details in our paper https://arxiv.org/abs/2502.02737 

**Key Feature:** BWork-LLM has the ability to search for information on the internet through its built-in MCP (Model Context Protocol). When a user asks a question, the model sends a request to `https://yandex.by/search/?text={user_question}&lr=10274&search_source=yaby_desktop_common&src=suggest_`, opens the first 2 search result links, extracts the first 2 paragraphs from each, and passes this retrieved information to the AI for generating an informed response.

BWork-LLM 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).

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).
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

### How to use

### Transformers
```bash
pip install transformers
```

```python
from transformers import AutoModelForCausalLM, AutoTokenizer
checkpoint = "Dimonomi/BWork-LLM"

device = "cuda" # for GPU usage or "cpu" for CPU usage
tokenizer = AutoTokenizer.from_pretrained(checkpoint)
# for multiple GPUs install accelerate and do `model = AutoModelForCausalLM.from_pretrained(checkpoint, device_map="auto")`
model = AutoModelForCausalLM.from_pretrained(checkpoint).to(device)

messages = [{"role": "user", "content": "What is gravity?"}]
input_text=tokenizer.apply_chat_template(messages, tokenize=False)
print(input_text)
inputs = tokenizer.encode(input_text, return_tensors="pt").to(device)
outputs = model.generate(inputs, max_new_tokens=50, temperature=0.2, top_p=0.9, do_sample=True)
print(tokenizer.decode(outputs[0]))
```

Chat in TRL

You can also use the TRL CLI to chat with the model from the terminal:

```bash
pip install trl
trl chat --model_name_or_path Dimonomi/BWork-LLM --device cpu
```

Transformers.js

```bash
npm i @huggingface/transformers
```

```js
import { pipeline } from "@huggingface/transformers";

// Create a text generation pipeline
const generator = await pipeline(
  "text-generation",
  "Dimonomi/BWork-LLM",
);

// Define the list of messages
const messages = [
  { role: "system", content: "You are a helpful assistant." },
  { role: "user", content: "What is the capital of France?" },
];

// Generate a response
const output = await generator(messages, { max_new_tokens: 128 });
console.log(output[0].generated_text.at(-1).content);
// "The capital of France is Paris."
```

Evaluation

In this section, we report the evaluation results of BWork-LLM. All evaluations are zero-shot unless stated otherwise, and we use lighteval to run them.

Base pre-trained model

Metrics BWork-LLM-135M-8k SmolLM-135M
HellaSwag 42.1 41.2
ARC (Average) 43.9 42.4
PIQA 68.4 68.4
MMLU (cloze) 31.5 30.2
CommonsenseQA 33.9 32.7
TriviaQA 4.1 4.3
Winogrande 51.3 51.3
OpenBookQA 34.6 34.0
GSM8K (5-shot) 1.4 1.0

Instruction model

Metric BWork-LLM-135M-Instruct SmolLM-135M-Instruct
IFEval (Average prompt/inst) 29.9 17.2
MT-Bench 19.8 16.8
HellaSwag 40.9 38.9
ARC (Average) 37.3 33.9
PIQA 66.3 64.0
MMLU (cloze) 29.3 28.3
BBH (3-shot) 28.2 25.2
GSM8K (5-shot) 1.4 1.4

Limitations

BWork-LLM 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.

Training

Model

路 Architecture: Transformer decoder
路 Pretraining tokens: 2T
路 Precision: bfloat16

Hardware

路 GPUs: 64 H100

Software

路 Training Framework: nanotron

License

Apache 2.0

Citation

```bash
@misc{allal2025smollm2smolgoesbig,
      title={SmolLM2: When Smol Goes Big -- Data-Centric Training of a Small Language Model}, 
      author={Loubna Ben Allal and Anton Lozhkov and Elie Bakouch and Gabriel Mart铆n Bl谩zquez and Guilherme Penedo and Lewis Tunstall and Andr茅s Marafioti and Hynek Kydl铆膷ek and Agust铆n Piqueres Lajar铆n and Vaibhav Srivastav and Joshua Lochner and Caleb Fahlgren and Xuan-Son Nguyen and Cl茅mentine Fourrier and Ben Burtenshaw and Hugo Larcher and Haojun Zhao and Cyril Zakka and Mathieu Morlon and Colin Raffel and Leandro von Werra and Thomas Wolf},
      year={2025},
      eprint={2502.02737},
      archivePrefix={arXiv},
      primaryClass={cs.CL},
      url={https://arxiv.org/abs/2502.02737}, 
}
```