Metrics for evaluating Automated Audio Captioning systems, designed for PyTorch.
- Easy to install and download
- Produces same results than caption-evaluation-tools and fense repositories
- Provides 12 different metrics:
Install the pip package:
pip install aac-metrics
If you want to check if the package has been installed and the version, you can use this command:
aac-metrics-info
Download the external code and models needed for METEOR, SPICE, SPIDEr, SPIDEr-max, PTBTokenizer, SBERTSim, FluencyError, FENSE and SPIDEr-FL:
aac-metrics-download
Notes:
- The external code for SPICE, METEOR and PTBTokenizer is stored in
~/.cache/aac-metrics
. - The weights of the FENSE fluency error detector and the the SBERT model are respectively stored by default in
~/.cache/torch/hub/fense_data
and~/.cache/torch/sentence_transformers
.
The full evaluation pipeline to compute AAC metrics can be done with aac_metrics.evaluate
function.
from aac_metrics import evaluate
candidates: list[str] = ["a man is speaking", "rain falls"]
mult_references: list[list[str]] = [["a man speaks.", "someone speaks.", "a man is speaking while a bird is chirping in the background"], ["rain is falling hard on a surface"]]
corpus_scores, _ = evaluate(candidates, mult_references)
print(corpus_scores)
# dict containing the score of each metric: "bleu_1", "bleu_2", "bleu_3", "bleu_4", "rouge_l", "meteor", "cider_d", "spice", "spider"
# {"bleu_1": tensor(0.4278), "bleu_2": ..., ...}
To compute metrics for the DCASE2023 challenge, just set the argument metrics="dcase2023"
in evaluate
function call.
corpus_scores, _ = evaluate(candidates, mult_references, metrics="dcase2023")
print(corpus_scores)
# dict containing the score of each metric: "meteor", "cider_d", "spice", "spider", "spider_fl", "fluerr"
Evaluate a specific metric can be done using the aac_metrics.functional.<metric_name>.<metric_name>
function or the aac_metrics.classes.<metric_name>.<metric_name>
class. Unlike evaluate
, the tokenization with PTBTokenizer is not done with these functions, but you can do it manually with preprocess_mono_sents
and preprocess_mult_sents
functions.
from aac_metrics.functional import cider_d
from aac_metrics.utils.tokenization import preprocess_mono_sents, preprocess_mult_sents
candidates: list[str] = ["a man is speaking", "rain falls"]
mult_references: list[list[str]] = [["a man speaks.", "someone speaks.", "a man is speaking while a bird is chirping in the background"], ["rain is falling hard on a surface"]]
candidates = preprocess_mono_sents(candidates)
mult_references = preprocess_mult_sents(mult_references)
corpus_scores, sents_scores = cider_d(candidates, mult_references)
print(corpus_scores)
# {"cider_d": tensor(0.9614)}
print(sents_scores)
# {"cider_d": tensor([1.3641, 0.5587])}
Each metrics also exists as a python class version, like aac_metrics.classes.cider_d.CIDErD
.
To evaluate audio captioning systems, I would recommand to compute SPIDEr
, FENSE
and Vocab
metrics. SPIDEr
is useful to compare with the rest of the litterature, but it is highly sensitive to n-gram matching and can overestimate model trained with reinforcement learning. FENSE
is more consistent and variable than SPIDEr
, but uses a model not trained on audio captions. Vocab
can give you an insight about the model diversity. To compute all of these metrics at once, you can use for example the Evaluate
class:
from aac_metrics import Evaluate
evaluate = Evaluate(metrics=["spider", "fense", "vocab"])
candidates: list[str] = ...
mult_references: list[list[str]] = ...
corpus_scores, _ = evaluate(candidates, mult_references)
vocab_size = corpus_scores["vocab"]
spider_score = corpus_scores["spider"]
fense_score = corpus_scores["fense"]
Metric name | Python Class | Origin | Range | Short description |
---|---|---|---|---|
BLEU [1] | BLEU |
machine translation | [0, 1] | Precision of n-grams |
ROUGE-L [2] | ROUGEL |
text summarization | [0, 1] | FScore of the longest common subsequence |
METEOR [3] | METEOR |
machine translation | [0, 1] | Cosine-similarity of frequencies with synonyms matching |
CIDEr-D [4] | CIDErD |
image captioning | [0, 10] | Cosine-similarity of TF-IDF computed on n-grams |
SPICE [5] | SPICE |
image captioning | [0, 1] | FScore of a semantic graph |
SPIDEr [6] | SPIDEr |
image captioning | [0, 5.5] | Mean of CIDEr-D and SPICE |
BERTScore [7] | BERTScoreMRefs |
text generation | [0, 1] | Fscore of BERT embeddings. In contrast to torchmetrics, it supports multiple references per file. |
Metric name | Python Class | Origin | Range | Short description |
---|---|---|---|---|
SPIDEr-max [8] | SPIDErMax |
audio captioning | [0, 5.5] | Max of SPIDEr scores for multiples candidates |
SBERT-sim [9] | SBERTSim |
audio captioning | [-1, 1] | Cosine-similarity of Sentence-BERT embeddings |
Fluency Error Rate [9] | FER |
audio captioning | [0, 1] | Detect fluency errors in sentences with a pretrained model |
FENSE [9] | FENSE |
audio captioning | [-1, 1] | Combines SBERT-sim and Fluency Error rate |
SPIDEr-FL [10] | SPIDErFL |
audio captioning | [0, 5.5] | Combines SPIDEr and Fluency Error rate |
Metric name | Python Class | Origin | Range | Short description |
---|---|---|---|---|
Vocabulary | Vocab |
text generation | [0, +∞[ | Number of unique words in candidates. |
This package currently does not include all metrics dedicated to audio captioning. Feel free to do a pull request / or ask to me by email if you want to include them. Those metrics not included are listed here:
- CB-Score [11]
- SPICE+ [12]
- ACES [13] (can be found here: https://github.com/GlJS/ACES)
- SBF [14]
- s2v [15]
This package has been developped for Ubuntu 20.04, and it is expected to work on most Linux distributions. Windows is not officially supported.
The pip requirements are automatically installed when using pip install
on this repository.
torch >= 1.10.1
numpy >= 1.21.2
pyyaml >= 6.0
tqdm >= 4.64.0
sentence-transformers >= 2.2.2
transformers
torchmetrics >= 0.11.4
java
>= 1.8 and <= 1.13 is required to compute METEOR, SPICE and use the PTBTokenizer. Most of these functions can specify a java executable path withjava_path
argument or by overridingAAC_METRICS_JAVA_PATH
environment variable.
The CIDEr metric differs from CIDEr-D because it applies a stemmer to each word before computing the n-grams of the sentences. In AAC, only the CIDEr-D is reported and used for SPIDEr in caption-evaluation-tools, but some papers called it "CIDEr".
No. Most of these metrics use numpy or external java programs to run, which prevents multi-GPU testing in parallel.
Maybe. Most of the metrics only need python to run, which can be done on Windows. However, you might expect errors with METEOR metric, SPICE-based metrics and PTB tokenizer, since they requires an external java program to run.
SPIDEr-max [7] is a metric based on SPIDEr that takes into account multiple candidates for the same audio. It computes the maximum of the SPIDEr scores for each candidate to balance the high sensitivity to the frequency of the words generated by the model. For more detail, please see the documentation about SPIDEr-max.
[1] K. Papineni, S. Roukos, T. Ward, and W.-J. Zhu, “BLEU: a method for automatic evaluation of machine translation,” in Proceedings of the 40th Annual Meeting on Association for Computational Linguistics - ACL ’02. Philadelphia, Pennsylvania: Association for Computational Linguistics, 2001, p. 311. [Online]. Available: http://portal.acm.org/citation.cfm?doid=1073083.1073135
[2] C.-Y. Lin, “ROUGE: A package for automatic evaluation of summaries,” in Text Summarization Branches Out. Barcelona, Spain: Association for Computational Linguistics, Jul. 2004, pp. 74–81. [Online]. Available: https://aclanthology.org/W04-1013
[3] M. Denkowski and A. Lavie, “Meteor Universal: Language Specific Translation Evaluation for Any Target Language,” in Proceedings of the Ninth Workshop on Statistical Machine Translation. Baltimore, Maryland, USA: Association for Computational Linguistics, 2014, pp. 376–380. [Online]. Available: http://aclweb.org/anthology/W14-3348
[4] R. Vedantam, C. L. Zitnick, and D. Parikh, “CIDEr: Consensus-based Image Description Evaluation,” arXiv:1411.5726 [cs], Jun. 2015, [Online]. Available: http://arxiv.org/abs/1411.5726
[5] P. Anderson, B. Fernando, M. Johnson, and S. Gould, “SPICE: Semantic Propositional Image Caption Evaluation,” arXiv:1607.08822 [cs], Jul. 2016, [Online]. Available: http://arxiv.org/abs/1607.08822
[6] S. Liu, Z. Zhu, N. Ye, S. Guadarrama, and K. Murphy, “Improved Image Captioning via Policy Gradient optimization of SPIDEr,” 2017 IEEE International Conference on Computer Vision (ICCV), pp. 873–881, Oct. 2017, arXiv: 1612.00370. [Online]. Available: http://arxiv.org/abs/1612.00370
[7] T. Zhang*, V. Kishore*, F. Wu*, K. Q. Weinberger, and Y. Artzi, “BERTScore: Evaluating Text Generation with BERT,” 2020. [Online]. Available: https://openreview.net/forum?id=SkeHuCVFDr
[8] E. Labbé, T. Pellegrini, and J. Pinquier, “Is my automatic audio captioning system so bad? spider-max: a metric to consider several caption candidates,” Nov. 2022. [Online]. Available: https://hal.archives-ouvertes.fr/hal-03810396
[9] Z. Zhou, Z. Zhang, X. Xu, Z. Xie, M. Wu, and K. Q. Zhu, Can Audio Captions Be Evaluated with Image Caption Metrics? arXiv, 2022. [Online]. Available: http://arxiv.org/abs/2110.04684
[10] DCASE website task6a description: https://dcase.community/challenge2023/task-automated-audio-captioning#evaluation
[11] I. Martín-Morató, M. Harju, and A. Mesaros, “A Summarization Approach to Evaluating Audio Captioning,” Nov. 2022. [Online]. Available: https://dcase.community/documents/workshop2022/proceedings/DCASE2022Workshop_Martin-Morato_35.pdf
[12] F. Gontier, R. Serizel, and C. Cerisara, “SPICE+: Evaluation of Automatic Audio Captioning Systems with Pre-Trained Language Models,” in ICASSP 2023 - 2023 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP), 2023, pp. 1–5. doi: 10.1109/ICASSP49357.2023.10097021.
[13] G. Wijngaard, E. Formisano, B. L. Giordano, M. Dumontier, “ACES: Evaluating Automated Audio Captioning Models on the Semantics of Sounds”, in EUSIPCO 2023, 2023.
[14] R. Mahfuz, Y. Guo, A. K. Sridhar, and E. Visser, Detecting False Alarms and Misses in Audio Captions. 2023. [Online]. Available: https://arxiv.org/pdf/2309.03326.pdf
[15] S. Bhosale, R. Chakraborty, and S. K. Kopparapu, “A Novel Metric For Evaluating Audio Caption Similarity,” in ICASSP 2023 - 2023 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP), 2023, pp. 1–5. doi: 10.1109/ICASSP49357.2023.10096526.
If you use SPIDEr-max, you can cite the following paper using BibTex :
@inproceedings{Labbe2022,
title = {Is my Automatic Audio Captioning System so Bad? SPIDEr-max: A Metric to Consider Several Caption Candidates},
author = {Labb\'{e}, Etienne and Pellegrini, Thomas and Pinquier, Julien},
year = 2022,
month = {November},
booktitle = {Proceedings of the 7th Detection and Classification of Acoustic Scenes and Events 2022 Workshop (DCASE2022)},
address = {Nancy, France},
url = {https://dcase.community/documents/workshop2022/proceedings/DCASE2022Workshop_Labbe_46.pdf}
}
If you use this software, please consider cite it as "Labbe, E. (2013). aac-metrics: Metrics for evaluating Automated Audio Captioning systems for PyTorch.", or use the following BibTeX citation:
@software{
Labbe_aac_metrics_2024,
author = {Labbé, Etienne},
license = {MIT},
month = {03},
title = {{aac-metrics}},
url = {https://github.com/Labbeti/aac-metrics/},
version = {0.5.4},
year = {2024},
}
Maintainer:
- Étienne Labbé "Labbeti": labbeti.pub@gmail.com