Computer scienceData scienceNLPNLP metricsClassic NLP metrics

METEOR

WordNet synonym match

Report a typo

Given a reference—prediction pair, find the Wordnet synonym match. Print out the result of the wordnetsyn_match() call on the provided reference—prediction pair.

Write a program in Python 3
# Your imports here
from nltk.translate.meteor_score import wordnetsyn_match

reference = "Adding additional reference translations will increase the BLEU score"
prediction = "Supplying extra reference translations will increment the BLEU score"

# Your code here
___

Create a free account to access the full topic