Meteor Universal: Language Specific Translation Evaluation for Any Target Language
https://www.cs.cmu.edu/~alavie/METEOR/index.html#Download
- METEOR (v1.5)
- Description: An alignment-based translation evaluation metric
- Name:
denkowski2014-meteor
- Usage:
from repro.models.denkowski2014 import METEOR model = METEOR() inputs = [ {"candidate": "The candidate text", "references": ["The first", "The second reference"]} ] macro, micro = model.predict_batch(inputs)
macro
andmicro
are the averaged and input-level METEOR scores.
- Image name:
danieldeutsch/denkowski2014
- Build command:
repro setup denkowski2014
- Requires network: No
repro setup denkowski2014
pytest models/denkowski2014/tests
- Regression unit tests pass
See here - Correctness unit tests pass
- Model runs on full test dataset
- Predictions approximately replicate results reported in the paper
- Predictions exactly replicate results reported in the paper