π Spaceship |
|
π¨βπ Astronauts |
|
π°οΈ Training Program |
|
π Operating Manual | COLING22 Long Paper |
One NLG evaluation library to rule them all
NLG Metricverse is an end-to-end Python library for NLG evaluation, devised to provide a living unified codebase for fast application, analysis, comparison, visualization, and prototyping of automatic metrics.
- Spures the adoption of newly proposed metrics, unleashing their potential
- Reduces the implementational burden, allowing users to easily move from papers to practical applications.
- Increases comparability and replicability of NLG research.
- Provides content-rich metric cards and static/interactive visualization tools to improve metric understanding and scoring interpretation.
- Motivations
- Available Metrics
- Installation
- Quickstart
- Code Style
- Custom Metrics
- Contributing
- Contact
- License
- π As Natural Language Generation (NLG) models are getting better over time, accurately evaluating them is becoming an increasingly pressing priority, asking researchers to deal with semantics, different plausible targets, and multiple intrinsic quality dimensions (e.g., informativeness, fluency, factuality).
- π€ Task examples: machine translation, abstractive question answering, single/multi-document summarization, data-to-text, chatbots, image/video captioning, etc.
- π Human evaluation is often the best indicator of the quality of a system. However, designing crowd sourcing experiments is an expensive and high-latency process, which does not easily fit in a daily model development pipeline. Therefore, NLG researchers commonly use automatic evaluation metrics, which provide an acceptable proxy for quality and are very cheap to compute.
- π NLG metrics automatically compute a holistic or dimension-specific score, an acceptable proxy for effectiveness and efficiency. However, they are becoming an important bottleneck for research in the field. As we know, areas can stagnate due to poor metrics, and we believe that you shouldn't feel confined to the most traditional overlap-based techniques like ROUGE.
- π‘ If you're working on an established problem, you'll feel pressure from readers to be conservative and use the metrics that have already been tested for the same task. However, this might be a compelling pressure. Our view is that NLP engineers should enrich their evaluation toolkits with multiple metrics capturing different textual properties, being free to argue against cultural norms and motivate new ones, also exploring the latest contributions focused on semantics.
- β New NLG metrics are constantly being proposed to top-tier venue conferences, but their implementation remains disrupted, with distinct environments, properties, settings, benchmarks, and featuresβmaking them difficult to compare or apply.
- β The absence of a collective and continuously updated repository discourages the use of modern solutions and slows their understanding.
- π― NLG Metricverse implements a large number of prominent evaluation metrics in NLG, seeking to articulate the textual properties they encode (e.g., fluency, grammatical correctness, informativeness), tasks, and limits. Understanding, using, and examining a metric has never been easier.
NLG Metricverse supports 38 diverse evaluation metrics overall (last update: October 12, 2022). The code for these metrics will be progressively released in the coming weeks.
Some libraries have already tried to make an integrated environment. To our best knowledge, NLGEval, HugginFace Datasets, Evaluate, Torch-Metrics, and Jury are the only resources available. However, none of them possess all the properties listed below: (i) large number of heterogeneous NLG metrics, (ii) concurrent computation of more metrics at once, (iii) support for multiple references and/or predictions, (iv) meta-evaluation, and (v) visualization.
The following table summarizes the discrepancies between NLG Metricverse and related work.
NLG-Metricverse | NLGEval | Datasets | Evaluate | TorchMetrics | Jury | |
---|---|---|---|---|---|---|
#NLG-specific metrics | 38 + Datasets | 8 | 22 | 22 | 13 | 19 + Datasets |
More metrics at once | β | β | β | β | β | β |
Multiple refs/preds | β | β | β | β | β | β |
Meta-evaluation | β | β | β | β | β | β |
Visualization | β | β | β | β | β | β |
π Complete comparison and supported metrics
Install from PyPI repository
pip install nlg-metricverse
or build from source
git clone https://github.com/disi-unibo-nlp/nlg-metricverse.git
cd nlg-metricverse
pip install -v .
The Spaces edition of NLG Metricverse will be launched soon. Check it out here:
It is only two lines of code to evaluate generated outputs: (i) instantiate your scorer by selecting the desired metric(s) and (ii) apply it!
Specify the metrics you want to use on instantiation,
# If you specify more metrics, each of them will be applyied on your data (allowing for a fast prediction/efficiency comparison)
scorer = NLGMetricverse(metrics=["bleu", "rouge"])
or directly import metrics from nlgmetricverse.metrics
as classes, then instantiate and use them as desired.
from nlgmetricverse.metrics import BertScore
scorer = BertScore.construct()
You can seemlessly access both nlgmetricverse
and HuggingFace datasets
metrics through nlgmetricverse.load_metric
.
NLG Metricverse falls back to datasets
implementation of metrics for the ones that are currently not supported; you can see the metrics available for datasets
on datasets/metrics.
bleu = NLGMetricverse.load_metric("bleu")
# metrics not available in `nlgmetricverse` but in `datasets`
wer = NLGMetricverse.load_metric("competition_math") # It falls back to `datasets` package with a warning
Note: if a selected metric requires specific packages, you'll be invited to install them (e.g., "bertscore" β pip install bertscore
).
β NLG evaluation is very challenging also because the relationships between candidate and reference texts tend to be one-to-many or many-to-many. An artificial text predicted by a model might have multiple human references (i.e., there is more than one effective way to say most things), as well as a model can generate multiple distinct outputs. Such cardinality is crucial, but official implementations tend to neglect it. We do not.
1:1. One prediction, one reference ([p1, ..., pn] and [r1, ..., rn] syntax).
predictions = ["Evaluating artificial text has never been so simple", "the cat is on the mat"]
references = ["Evaluating artificial text is not difficult", "The cat is playing on the mat."]
1:M. One prediction, many references ([p1, ..., pn] and [[r11, ..., r1m], ..., [rn1, ..., rnm]] syntax)
predictions = ["Evaluating artificial text has never been so simple", "the cat is on the mat"]
references = [
["Evaluating artificial text is not difficult", "Evaluating artificial text is simple"],
["The cat is playing on the mat.", "The cat plays on the mat."]
]
K:M. Many predictions, many references ([[p11, ..., p1k], ..., [pn1, ..., pnk]] and [[r11, ..., r1m], ..., [rn1, ..., rnm]] syntax). This is helpful for language models with a decoding strategy focused on diversity (e.g., beam search, temperature sampling).
predictions = [
["Evaluating artificial text has never been so simple", "The evaluation of automatically generated text is simple."],
["the cat is on the mat", "the cat likes playing on the mat"]
]
references = [
["Evaluating artificial text is not difficult", "Evaluating artificial text is simple"],
["The cat is playing on the mat.", "The cat plays on the mat."]
]
scores = scorer(predictions, references)
The scorer
automatically selects the proper strategy for applying the selected metric(s) depending on the input format. In any case, if a prediction needs to be compared against multiple references, you can customize the reduction function to use (e.g., reduce_fn=max
chooses the prediction-reference pair with the highest score for each of the N items in the dataset).
scores = scorer.compute(predictions, references, reduce_fn="max")
Additional metric-specific parameters can be specified on instantiation.
metrics = [
load_metric("bleu", resulting_name="bleu_1", compute_kwargs={"max_order": 1}),
load_metric("bleu", resulting_name="bleu_2", compute_kwargs={"max_order": 2}),
load_metric("bertscore", resulting_name="bertscore_1", compute_kwargs={"model_type": "microsoft/deberta-large-mnli", "idf": True}),
load_metric("rouge")]
scorer = NLGMetricverse(metrics=metrics)
To check the code style,
python tests/run_code_style.py check
To format the codebase,
python tests/run_code_style.py format
You can use custom metrics by inheriting nlgmetricverse.metrics.Metric
.
You can see current metrics implemented on NLG Metricverse from nlgmetricverse/metrics.
NLG Metricverse itself uses datasets.Metric
as a base class to drive its own base class as nlgmetricverse.metrics.Metric
. The interface is similar; however, NLG Metricverse makes the metrics to take a unified input type by handling metric-specific inputs and allowing multiple cardinalities (1:1, 1:M, K:M).
For implementing custom metrics, both base classes can be used but we strongly recommend using nlgmetricverse.metrics.Metric
for its advantages.
from nlgmetricverse.metrics import MetricForLanguageGeneration
class CustomMetric(MetricForLanguageGeneration):
def _compute_single_pred_single_ref(
self, predictions, references, reduce_fn = None, **kwargs
):
raise NotImplementedError
def _compute_single_pred_multi_ref(
self, predictions, references, reduce_fn = None, **kwargs
):
raise NotImplementedError
def _compute_multi_pred_multi_ref(
self, predictions, references, reduce_fn = None, **kwargs
):
raise NotImplementedError
For more details, have a look at base metric implementation nlgmetricverse.metrics.Metric
Thanks go to all these wonderful collaborations for their contribution towards the NLG Metricverse library:
![]() Giacomo Frisoni |
![]() Andrea Zammarchi |
![]() Marco Avagnano |
We are hoping that the open-source community will help us edit the code and make it better! Don't hesitate to open issues and contribute the fix/improvement! We can guide you if you're not sure where to start but want to help us out π₯. In order to contribute a change to our code base, please submit a pull request (PR) via GitHub and someone from our team will go over it and accept it.
If you have troubles, suggestions, or ideas, the Discussion board might have some relevant information. If not, you can post your questions there π¬π¨.
Contact person: Giacomo Frisoni, giacomo.frisoni@unibo.it. This research work has been conducted within the Department of Computer Science and Engineering, University of Bologna, Italy.
The code is released under the MIT License. It should not be used to promote or profit from violence, hate, and division, environmental destruction, abuse of human rights, or the destruction of people's physical and mental health.