File size: 850 Bytes
7e3e85d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
from typing import List, Tuple, Dict


class SummMetric:
    metric_name: str = None
    range: Tuple[float, float] = None
    higher_is_better: bool = None
    requires_heavy_compute: bool = None

    def evaluate(
        self,
        # TODO zhangir: integrate with dataset api
        inputs: List[str],
        targets: List[str],
        keys: List[str],
    ) -> Dict[str, float]:
        """
        All metrics should have this function.
        :input: A list of summaries.
        :target: A list of target summaries corresponding to each entry of input.
        :keys: Which metrics to return,
        e.g, ['rouge_1_f_score', 'rouge_2_f_score']
        :return: A dictionary with keys metrics and values scores.
        """
        raise NotImplementedError(
            "the base class for metrics shouldn't be instantiated!"
        )