METEOR (Metric for Evaluation of Translation with Explicit ORdering)
METEOR is a metric for the evaluation of machine translation output. The metric is based on the harmonic mean of unigram precision and recall, with recall weighted higher than precision.
Meteor consists of two major components:
a flexible monolingual word aligner
and a scorer
Example
From the two alignments shown, alignment (a) would be selected at this point. Stages are run consecutively and each stage only adds to the alignment those unigrams which have not been matched in previous stages.
## Code Example
This is the link for calculating meteor value. Clone this and run meteor.py
Comments