A package to reduce the size of Hugging Face models via Vocabulary Slimming
Project description
VocabSlim
A package to reduce the size of 🤗 Hugging Face models via Vocabulary Slimming.
Large language models (LLMs) increasingly adopt extensive vocabularies to better handle diverse tasks such as multilingual processing, code generation, and function-calling. Recent research highlights that expanding both model and vocabulary size enhances performance, following scaling laws with vocabulary.
However, larger vocabularies come with significant drawbacks. For smaller LLMs designed for specific tasks like English or Chinese chat applications on mobile devices, a large vocabulary can be inefficient. It consumes computational resources as the model must predict token probabilities at each decoding step. Additionally, token embeddings occupy memory and lead to larger activations during inference and fine-tuning, exacerbating the issue for smaller models(e.g., 26.53% for Qwen2.5-0.5B).
For instance, the Qwen2.5 series illustrates this challenge:
| Model | 0.5B | 1.5B | 3B | 7B | 14B | 32B | 72B |
|---|---|---|---|---|---|---|---|
| Number of Parameters | 0.49B | 1.54B | 3.09B | 7.61B | 14.7B | 32.5B | 72.7B |
| Number of Parameters (Non-Embedding) | 0.36B | 1.31B | 2.77B | 6.53B | 13.1B | 31.0B | 70.0B |
| Ratio (Embeding Parameters) | 26.53% | 14.93% | 10.36% | 14.19% | 10.88% | 4.61% | 3.71% |
Reducing the vocabulary can significantly shrink the model size and enhance memory efficiency for both inference and fine-tuning. This benefit is particularly pronounced when models are quantized, as most quantization methods avoid quantizing token embeddings and the language modeling head to preserve accuracy.
Installation
From PyPI (recommended)
pip install vocab-slim
From source
git clone https://github.com/Andy1314Chen/vocab-slim.git
cd vocab-slim
pip install -r requirements.txt
pip install -e .
Usage
Command Line Interface
vocab-slim --model_name_or_path Qwen/Qwen2.5-0.5B --vocab_size 32000
Python API
from vocabslim import VocabSlim
# load pretrained tokenizer and model, train new BPE tokenizer
vocSlim = VocabSlim(model_name_or_path="Qwen/Qwen2.5-0.5B",
save_path=f"Qwen2.5-0.5B-Vocab-Slimed-32K",
dataset_config={"name": "wikitext",
"config": "wikitext-103-raw-v1",
"split": "train",
"text_column": "text"},
target_vocab_size=32_000)
# vocabulary slimming and adjust embedding weight
vocSlim.prune()
# compare outputs between original and slimmed models with test text
vocSlim.check("What is the capital of France?")
# slimmed model and tokenizer are saved in save_path
Evaluation
To evaluate the performance after vocabulary slimming, we used lm-evaluation-harness to compare on several common datasets.
from transformers import AutoModelForCausalLM, AutoTokenizer
from lm_eval.models.huggingface import HFLM
from lm_eval import simple_evaluate
model_path = "./Qwen2.5-0.5B-Vocab-Slimed-32K"
model = AutoModelForCausalLM.from_pretrained(model_path, device_map="auto").eval()
tokenizer = AutoTokenizer.from_pretrained(model_path)
lm = HFLM(pretrained=model, tokenizer=tokenizer, batch_size=32)
results = simple_evaluate(model=lm, tasks=["arc_challenge", "hellaswag", "piqa"])
results = {key: value for key, value in results.items() if key == "results"}
print("Accuracy:", results)
Model Size Reduction
| Model | Vocabulary Size | #params | Accuracy(arc_challenge,hellaswag,piqa) | Model Size(GB) |
|---|---|---|---|---|
| Qwen2.5-0.5B | 151,936 | 494.03M | 0.2952,0.4062,0.7024 | 0.94 |
| Qwen2.5-0.5B-Slimed-32K | 32,000 | 386.57M (-21.75%) | 0.2688,0.3658,0.6099 | 0.73 |
| Qwen2.5-0.5B-Slimed-32K-FT | 32,000 | 386.57M (-21.75%) | 0.2798,0.3915,0.6507 | 0.73 |
| SmolLM2-360M | 49,152 | 361.82M | 0.3652,0.4316,0.7214 | 0.69 |
| SmolLM2-360M-Slimed-32K | 32,000 | 345.36M (-4.56%) | 0.2824,0.2728,0.5120 | 0.66 |
| SmolLM2-360M-Slimed-32K-FT | 32,000 | 345.36M (-4.56%) | 0.3370,0.4055,0.6610 | 0.66 |
| Llama-3.2-1B | 128,256 | 1235.81M | 0.3131,0.4772,0.7448 | 2.40 |
| Llama-3.2-1B-Slimed-32K | 32,000 | 1038.68M (-15.95%) | 0.3020,0.4234,0.6453 | 2.00 |
| Llama-3.2-1B-Slimed-32K-FT | 32,000 | 1038.68M (-15.95%) | 0.3063,0.4603,0.6904 | 2.00 |
Limitations
- Only Hugging Face models with BPE tokenizer are supported.
- May cause performance degradation due to reduced vocabulary size.
- Currently only supports causal language models
References
Papers
-
Efficient Vocabulary Reduction for Small Language Models
- Authors: Yuta Nozaki, Dai Nakashima, Ryo Sato, Naoki Asaba, Shintaro Kawamura
- Published in: Proceedings of the 31st International Conference on Computational Linguistics: Industry Track 2025
- [Paper]
-
Scaling Laws with Vocabulary: Larger Models Deserve Larger Vocabularies
- Authors: Chaofan Tao, Qian Liu, Longxu Dou, Niklas Muennighoff, Zhongwei Wan, Ping Luo, Min Lin, Ngai Wong
- Published in: NeurIPS 2024
- [Paper]
-
Efficient Multilingual Language Model Compression through Vocabulary Trimming
- Authors: Asahi Ushio, Yi Zhou, Jose Camacho-Collados
- Published in: EMNLP 2023
- [Paper]
Related Projects
- Introducing Minivoc: Faster and Memory-Efficient LLMs Through Vocabulary Reduction [WIP]
Citation
If you use this software, please cite it as given below;
@software{vocab-slim,
author = {Andy1314Chen},
license = {Apache-2.0},
title = {{vocab-slim: A Tool for Hugging Face Model Vocabulary Slimming}}
url = {https://github.com/Andy1314Chen/vocab-slim}
}
Contributing
Contributions are welcome! Please feel free to submit a Pull Request. For major changes, please open an issue first to discuss what you would like to change.
License
This project is licensed under the Apache License 2.0 - see the LICENSE file for details.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file vocabslim-0.1.4.tar.gz.
File metadata
- Download URL: vocabslim-0.1.4.tar.gz
- Upload date:
- Size: 20.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5de28594ff3cd53a86637168b2657a69b14148c46320e98b65aa5a89f5dd2ed7
|
|
| MD5 |
b1d32794cc53104562ba47df895235c4
|
|
| BLAKE2b-256 |
8e205c71158357edb2a15f49cc5dabf5b6d3bc3c8f9ca93207327233abcba6bf
|
File details
Details for the file vocabslim-0.1.4-py3-none-any.whl.
File metadata
- Download URL: vocabslim-0.1.4-py3-none-any.whl
- Upload date:
- Size: 16.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.10.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eb685983bb1e3b574d5c7b4e493548c412afec5701f7c1325dfd744a43d276d0
|
|
| MD5 |
199f03805ae91331c00e9a86cf24cd58
|
|
| BLAKE2b-256 |
b982a1cfdddc16caff464ca9429d992bc13de0cf686bc6ec84a8d0a19c0de391
|