-
Notifications
You must be signed in to change notification settings - Fork 2k
/
Copy pathrouge.py
22 lines (18 loc) · 787 Bytes
/
rouge.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from rouge_score import rouge_scorer
scorer = rouge_scorer.RougeScorer(['rouge1', 'rouge2', 'rougeL'], use_stemmer=True)
# Single reference
candidate_summary = "the cat was found under the bed"
reference_summary = "the cat was under the bed"
scores = scorer.score(reference_summary, candidate_summary)
for key in scores:
print(f'{key}: {scores[key]}')
# Multiple references
candidate_summary = "the cat was found under the bed"
reference_summaries = ["the cat was under the bed", "found a cat under the bed"]
scores = {key: [] for key in ['rouge1', 'rouge2', 'rougeL']}
for ref in reference_summaries:
temp_scores = scorer.score(ref, candidate_summary)
for key in temp_scores:
scores[key].append(temp_scores[key])
for key in scores:
print(f'{key}:\n{scores[key]}')