Views
No views yet
| Metric | Original | Trimmed | Reduction |
|---|---|---|---|
| Vocabulary size | 250,112 tokens | 16,384 tokens | 93.45% |
| Model size | 300,176,768 params | 223,395,072 params | 61.64% |

1from transformers import AutoModel, AutoTokenizer
2
3model_name = "alphaedge-ai/mt5-base-ydd-16384"
4model = AutoModel.from_pretrained(model_name)
5tokenizer = 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},
}