A lightweight multilingual model for temporal classification of questions, fine-tuned from
intfloat/multilingual-e5-small.
E5-EG-small (E5 EverGreen - Small) is an efficient multilingual text classification model that determines whether questions have temporally mutable or immutable answers. This model offers a balanced trade-off between performance and computational efficiency.
1from transformers import pipeline
2import torch
3
4# Load model and tokenizer
5model_name = "s-nlp/E5-EverGreen-Multilingual-Small"
6pipe = pipeline("text-classification", model_name)
7
8# Batch classification example
9questions = [
10 "What is the capital of France?",
11 "Who won the latest World Cup?",
12 "What is the speed of light?",
13 "What is the current Bitcoin price?"
14 "How old is Elon Musk",
15 "How old was Leo Tolstoy when he died?"
16]
17
18# Classify
19results = pipe(questions)
20
Same test sets as E5-EG-large (2100 samples per language).
1@misc{pletenev2025truetomorrowmultilingualevergreen,
2 title={Will It Still Be True Tomorrow? Multilingual Evergreen Question Classification to Improve Trustworthy QA},
3 author={Sergey Pletenev and Maria Marina and Nikolay Ivanov and Daria Galimzianova and Nikita Krayko and Mikhail Salnikov and Vasily Konovalov and Alexander Panchenko and Viktor Moskvoretskii},
4 year={2025},
5 eprint={2505.21115},
6 archivePrefix={arXiv},
7 primaryClass={cs.CL},
8 url={https://arxiv.org/abs/2505.21115},
9}