This is a source-only COMET model used for efficient evaluation subset selection.
Specifically this model predicts expected diversity in outputs (average BLEU score between systems).
The lower the scores, the better it is for evaluation because it means lower similarity in outputs, hence higher diversity, and thus will distinguish between two models.
It is not compatible with the original Unbabel's COMET and to run it you have to install github.com/zouharvi/PreCOMET:
1import precomet
2model = precomet.load_from_checkpoint(precomet.download_model("zouharvi/PreCOMET-diversity"))3model.predict([4{"src":"This is an easy source sentence."},5{"src":"this is a much more complicated source sen-tence that will pro·bably lead to loww scores 🤪"}6])["scores"]7>[25.921934127807617,20.805429458618164]
The primary use of this model is from the subset2evaluate package:
Random selection gives us only one cluster and system-level Spearman correlation of 0.71 when we have a budget for only 100 segments. However, by using this model:
@misc{zouhar2025selectdatapointsefficienthuman,
title={How to Select Datapoints for Efficient Human Evaluation of NLG Models?},
author={Vilém Zouhar and Peng Cui and Mrinmaya Sachan},
year={2025},
eprint={2501.18251},
archivePrefix={arXiv},
primaryClass={cs.CL},
url={https://arxiv.org/abs/2501.18251},
}