nlg-metricverse

[COLING22] An End-to-End Library for Evaluating Natural Language Generation

https://github.com/disi-unibo-nlp/nlg-metricverse

Science Score: 44.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
    Found CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (11.9%) to scientific vocabulary

Keywords

language-models metrics natural-language-generation natural-language-processing nlg-evaluation python pytorch visualization
Last synced: 6 months ago · JSON representation ·

Repository

[COLING22] An End-to-End Library for Evaluating Natural Language Generation

Basic Info
  • Host: GitHub
  • Owner: disi-unibo-nlp
  • License: mit
  • Language: Python
  • Default Branch: main
  • Homepage:
  • Size: 13.3 MB
Statistics
  • Stars: 92
  • Watchers: 3
  • Forks: 5
  • Open Issues: 2
  • Releases: 3
Topics
language-models metrics natural-language-generation natural-language-processing nlg-evaluation python pytorch visualization
Created about 4 years ago · Last pushed about 2 years ago
Metadata Files
Readme License Citation

README.md

nlg-metricverse 🌌

🚀 Spaceship PyPI Python versions Made with Python
Build status GitHub issues
👨‍🚀 Astronauts Open Source Love svg1 License: MIT Maintenance
🛰️ Training Program Open In Colab
📕 Operating Manual COLING22 Long Paper


One NLG evaluation library to rule them all

Explore the universe of Natural Language Generation (NLG) evaluation metrics.

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.

Tables Of Contents

💡 Motivations

  • 📖 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.

🪐 Available Metrics and Supported Features

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 | 43 + Datasets | 8 | 22 | 53 | 13 | 19 + Datasets | | More metrics at once | :whitecheckmark: | :x: | :x: | :whitecheckmark: | :x: | :whitecheckmark: | | Multiple refs/preds | :whitecheckmark: | :whitecheckmark: | :x: | :x: | :x: | :whitecheckmark: | | Meta-evaluation | :whitecheckmark: | :x: | :x: | :x: | :x: | :x: | | Visualization | :whitecheckmark: | :x: | :x: | :x: | :x: | :x: |

🔍 Complete comparison and supported metrics

🔌 Installation

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 .

Explore on Hugging Face Spaces

The Spaces edition of NLG Metricverse will be launched soon. Check it out here:

We decided to create the app with the purpose of giving the users the possibility to try a demo of the library before installing it. We chose Hugging Face Spaces because, because it offers a simple way to host machine learning demo apps directly on a profile.

In the data app Home, there is a brief descriction of the library and its contents. On the left side of the screen is located the retractable sidebar, which contains all the metrics available in the data app. On a metric's page is the description of the metric and an input box for both prediction and reference text. After putting the texts and having pressed the Submit button, through the use of the NLG-Metricverse library, the prediction and reference are used to calculate the desidered score.

🚀 Quickstart

Prepare your environment

For NLGmetricverse we recommend using a virtual environment. If you are not familiar with virtual environments, you can read more about them here. Using virtual environments within a library that encompasses numerous metrics proves invaluable for seamless development and efficient management. By encapsulating each metric within its isolated environment, potential conflicts between dependencies are mitigated, ensuring consistent and reliable behavior. This approach streamlines dependency management, enabling precise specification of version requirements for each metric. Moreover, venv facilitates rigorous testing and reproducibility, safeguarding the library's integrity across various metric-driven scenarios. As metrics expand, venv simplifies collaboration among team members, reduces the risk of global environment contamination, and eases deployment processes.

Before running any code, you need to create and activate a virtual environment for the desidered metric and install the required dependencies. ```python python -m venv nlgmetricverse\env\rouge

activate the virtual environment on Command Prompt

nlgmetricverse\env\rouge\Scripts\activate.bat

or else on powershell

nlgmetricverse\env\rouge\Scripts\activate.ps1

!pip install -v . --quiet """Also, you need to install the packages which are available through a git source separately with the following command. For the folks who are curious about "why?"; a short explaination is that PYPI does not allow indexing a package which are directly dependent on non-pypi packages due to security reasons. The file requirements-dev.txt includes packages which are currently only available through a git source, or they are PYPI packages with no recent release or incompatible with NLGmetricverse, so that they are added as git sources or pointing to specific commits.""" !pip install -r requirements-dev.txt

if present, install the specific requirements for the metric

!pip install -r nlgmetricverse\metrics\rouge\requirements.txt After that, you can run the code for the metric you want to use. After you are done, you can deactivate the virtual environment. python deactivate ```

Then it is only with two lines of code to evaluate generated outputs: (i) instantiate your scorer by selecting the desired metric(s) and (ii) apply it!

Metric Selection

Specify the metrics you want to use on instantiation, ```python

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. python 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](https://github.com/huggingface/datasets/tree/master/metrics). python bleu = NLGMetricverse.load_metric("bleu")

metrics not available in nlgmetricverse but in datasets

wer = NLGMetricverse.loadmetric("competitionmath") # It falls back to datasets package with a warning ```

Metric Usage

Prediction-Reference Cardinality

☠ 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). python 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) python 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). python 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."] ]

Scorer Application

python 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). python scores = scorer.compute(predictions, references, reduce_fn="max")

Metric-specific Parameters

Additional metric-specific parameters can be specified on instantiation. python 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)

Code Style

To check the code style, python tests/run_code_style.py check To format the codebase, python tests/run_code_style.py format

🎨 Custom Metrics

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. When using a custom metric, you need to: 1. Create a folder inside nlgmetricverse/metrics with the name of your metric. 2. Create inside the folder __init__.py, *metric*.py and *metric*_planet.py. 3. Inside __init__.py, add the following code: python from nlgmetricverse.metrics.*metric*.*metric* import *Metric*

  1. Inside *metric*.py, add the following code: ```python """ Metric metric super class. """ from nlgmetricverse.metrics._core import MetricAlias from nlgmetricverse.metrics.metric.metric import CustomMetric

main_class = "Metric"

class Metric(MetricAlias): """ Metric metric superclass. """ SUBCLASS = CustomMetric `` 5. Insidemetricplanet.py, add the following code: ``python from nlgmetricverse.metrics import MetricForLanguageGeneration

class CustomMetric(MetricForLanguageGeneration): def computesinglepredsingleref( self, predictions, references, reducefn = 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

  1. Inside your metric folder add a README.md file, following the metric card guidelines.
  2. Add your metric to the comparison table and to the README.md file.
  3. Add your metric to nlgmetricverse/metrics/__init__.py file.
  4. Add your metric to metrics_list inside nlgmetricverse/metrics/_core/utils.py file.
  5. Add test cases for your metric inside tests/nlgmetricverse/metrics folder, with its respective expected outputs, inside tests/test_data/expected_outputs/metrics folder.

🙌 Contributing

Thanks go to all these wonderful collaborations for their contribution towards the NLG Metricverse library:


Giacomo Frisoni

Andrea Zammarchi

Valentina Pieri

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

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.

License

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.

Acknowledgments

In 2021, as we initiated the project development, we constructed our contributions above Jury and HuggingFace Evaluate, for which we express our gratitude. The project files explicitly state license details.

Star History

Star History Chart

Owner

  • Name: DISI UniBo NLP
  • Login: disi-unibo-nlp
  • Kind: user
  • Location: Italy

NLU Research Group @ University of Bologna @ Department of Computer Science and Engineering (DISI)

Citation (CITATION.cff)

cff-version: 1.2.0
message: "If you use this software, please cite it as below."
authors:
- family-names: "Frisoni"
  given-names: "Giacomo"
  orcid: "https://orcid.org/0000-0002-9845-0231"
- family-names: "Carbonaro"
  given-names: "Antonella"
  orcid: "https://orcid.org/0000-0002-3890-4852"
- family-names: "Moro"
  given-names: "Gianluca"
  orcid: "https://orcid.org/0000-0002-3663-7877"
- family-names: "Zammarchi"
  given-names: "Andrea"
  orcid: "https://orcid.org/0000-0002-1112-9497"
- family-names: "Avagnano"
  given-names: "Marco"
title: "NLG-Metricverse: An End-to-End Library for Evaluating Natural Language Generation"
version: 0.9.7
doi: ""
date-released: 2022-10-17
url: "https://aclanthology.org/2022.coling-1.306/"
preferred-citation:
  type: article
  authors:
  - family-names: "Frisoni"
    given-names: "Giacomo"
    orcid: "https://orcid.org/0000-0002-9845-0231"
  - family-names: "Carbonaro"
    given-names: "Antonella"
    orcid: "https://orcid.org/0000-0002-3890-4852"
  - family-names: "Moro"
    given-names: "Gianluca"
    orcid: "https://orcid.org/0000-0002-3663-7877"
  - family-names: "Zammarchi"
    given-names: "Andrea"
    orcid: "https://orcid.org/0000-0002-1112-9497"
  - family-names: "Avagnano"
    given-names: "Marco"
  doi: ""
  conference-paper: "Proceedings of the 29th International Conference on Computational Linguistics"
  month: 10
  start: 3465 # First page number
  end: 3479 # Last page number
  title: "NLG-Metricverse: An End-to-End Library for Evaluating Natural Language Generation"
  year: 2022

GitHub Events

Total
  • Watch event: 4
Last Year
  • Watch event: 4

Issues and Pull Requests

Last synced: 8 months ago

All Time
  • Total issues: 6
  • Total pull requests: 1
  • Average time to close issues: 3 months
  • Average time to close pull requests: less than a minute
  • Total issue authors: 6
  • Total pull request authors: 1
  • Average comments per issue: 0.83
  • Average comments per pull request: 0.0
  • Merged pull requests: 1
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 0
  • Pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Issue authors: 0
  • Pull request authors: 0
  • Average comments per issue: 0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
  • mihara-bot (1)
  • Gunale0926 (1)
  • fran-babylon (1)
  • eycheung (1)
  • anon3771 (1)
  • michaelmior (1)
Pull Request Authors
  • andreazammarchi3 (1)
Top Labels
Issue Labels
Pull Request Labels

Packages

  • Total packages: 1
  • Total downloads:
    • pypi 106 last-month
  • Total dependent packages: 0
  • Total dependent repositories: 1
  • Total versions: 8
  • Total maintainers: 2
pypi.org: nlg-metricverse

An End-to-End Library for Evaluating Natural Language Generation.

  • Versions: 8
  • Dependent Packages: 0
  • Dependent Repositories: 1
  • Downloads: 106 Last month
Rankings
Stargazers count: 8.0%
Dependent packages count: 10.1%
Forks count: 14.3%
Average: 14.8%
Downloads: 20.0%
Dependent repos count: 21.6%
Last synced: 6 months ago

Dependencies

.github/workflows/ci.yml actions
  • actions/cache v1 composite
  • actions/checkout v2 composite
  • actions/setup-python v2 composite
ci_requirements.txt pypi
  • bert_score ==0.3.11
  • click ==8.1.3
  • codecarbon ==2.1.4
  • datasets >=2.0.0
  • ecco >=0.1.2
  • evaluate >=0.2.2,<=0.3
  • fire >=0.4.0
  • ipython >=7.16.1
  • matplotlib >=3.5.1
  • nltk >=3.6.6,<3.7.1
  • numpy >=1.21.0
  • packaging >=21.3
  • pandas >=1.1.5
  • pyemd >=0.5.1
  • requests >=2.27.1
  • rouge-score ==0.1.2
  • scipy >=1.7.3
  • seaborn >=0.12.0
  • setuptools >=65.5.1
  • syllables >=1.0.3
  • textstat >=0.7.3
  • torch >=1.12.0
  • tqdm >=4.64.1
  • transformers >=4.24.0
  • typing >=3.7.4.3
  • validators >=0.20.0
nlgmetricverse/metrics/flesch_kincaid/requirements.txt pypi
  • textstat >=0.7.3
nlgmetricverse/metrics/gunning_fog/requirements.txt pypi
  • textstat >=0.7.3
nlgmetricverse/metrics/meteor/requirements.txt pypi
  • nltk >=3.6.6,<3.7.1
  • packaging >=21.3
nlgmetricverse/metrics/moverscore/requirements.txt pypi
nlgmetricverse/metrics/nist/requirements.txt pypi
  • nltk >=3.6.6,<3.7.1
nlgmetricverse/metrics/prism/requirements.txt pypi
  • fairseq ==0.9.0
  • numpy >=1.23,<1.24
  • numpy ==1.21.6
  • sentencepiece ==0.1.96
nlgmetricverse/metrics/rouge/requirements.txt pypi
  • rouge-score ==0.1.2
nlgmetricverse/metrics/sacrebleu/requirements.txt pypi
  • packaging >=21.3
  • sacrebleu >=2.0.0
nlgmetricverse/metrics/ter/requirements.txt pypi
  • jiwer >=2.3.0
nlgmetricverse/metrics/wer/requirements.txt pypi
  • jiwer >=2.3.0
nlgmetricverse/metrics/wmd/requirements.txt pypi
  • nltk >=3.6.6,<3.7.1
pyproject.toml pypi
requirements-dev.txt pypi
setup.py pypi
nlgmetricverse/metrics/abstractness/requirements.txt pypi
  • nltk >=3.6.6,<3.7.1
nlgmetricverse/metrics/aun/requirements.txt pypi
  • nltk >=3.6.6,<3.7.1
nlgmetricverse/metrics/bertscore/requirements.txt pypi
  • packaging >=21.3
nlgmetricverse/metrics/bleurt/requirements.txt pypi
nlgmetricverse/metrics/cer/requirements.txt pypi
  • jiwer >=2.3.0
nlgmetricverse/metrics/chrf/requirements.txt pypi
  • packaging >=21.3
  • sacrebleu >=2.0.0
nlgmetricverse/metrics/coleman_liau/requirements.txt pypi
  • textstat >=0.7.3
nlgmetricverse/metrics/comet/requirements.txt pypi
  • unbabel-comet >=1.1.2,<2
  • unbabel-comet >=2.0,<2.1