lbourdois/fineweb-2-trimming
Preview • Updated • 1.97M • 1.52k • 1
How to use alphaedge-ai/mt5-small-sot-32768 with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("fill-mask", model="alphaedge-ai/mt5-small-sot-32768") # Load model directly
from transformers import AutoTokenizer, AutoModelForSeq2SeqLM
tokenizer = AutoTokenizer.from_pretrained("alphaedge-ai/mt5-small-sot-32768")
model = AutoModelForSeq2SeqLM.from_pretrained("alphaedge-ai/mt5-small-sot-32768")This model is a 74.14% smaller version of google/mt5-small optimized for Southern Sotho language via vocabulary size reduction using the trimming method.
This trimmed model should perform similarly to the original model with only 32,768 tokens and a much smaller memory footprint. However, it may not perform well for other languages as tokens not commonly used in the selected languages were removed from the vocabulary.
| Metric | Original | Trimmed | Reduction |
|---|---|---|---|
| Vocabulary size | 250,112 tokens | 32,768 tokens | 86.90% |
| Model size | 300,176,768 params | 77,616,512 params | 74.14% |
from transformers import AutoModel, AutoTokenizer
model_name = "alphaedge-ai/mt5-small-sot-32768"
model = AutoModel.from_pretrained(model_name)
tokenizer = AutoTokenizer.from_pretrained(model_name)
@misc{xue2021mt5massivelymultilingualpretrained,
title={mT5: A massively multilingual pre-trained text-to-text transformer},
author={Linting Xue and Noah Constant and Adam Roberts and Mihir Kale and Rami Al-Rfou and Aditya Siddhant and Aditya Barua and Colin Raffel},
year={2021},
eprint={2010.11934},
archivePrefix={arXiv},
primaryClass={cs.CL},
url={https://arxiv.org/abs/2010.11934},
}
@misc{hf_blogpost_trimming,
title={Introduction to Trimming},
author={Loïck BOURDOIS and Tom AARSEN and Bram VANROY and Christopher AKIKI and Woojun JUNG and Manuel ROMERO and Prithiv SAKTHI},
year={2026},
url={https://huggingface.co/blog/lbourdois/introduction-to-trimming},
}
Base model
google/mt5-small