This is a source-only COMET model used for efficient evaluation subset selection.
Specifically this model predicts consistency of the system ordering based on a single segment being the same as the system ordering on the whole test-set.
The higher the scores, the better it is for evaluation because then fewer samples will be needed to arrive at the same system ordering.
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-cons"))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>[0.1797918677330017,0.32624873518943787]
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},
}