File size: 706 Bytes
888432c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
29
30
31
32
33
34
35
ascending_metrics = {
    "wer",
    "cer",
    "loss",
    "mae",
    "mahalanobis",
    "mse",
    "perplexity",
    "ter",
}

metric_ranges = {
    "accuracy": (0,1),
    "precision": (0,1),
    "recall": (0,1),
    "macro f1": (0,1),
    "micro f1": (0,1),
    "pearson": (-1, 1),
    "matthews_correlation": (-1, 1),
    "spearmanr": (-1, 1),
    "google_bleu": (0, 1),
    "precision@10": (0, 1),
    "mae": (0, 1),
    "mauve": (0, 1),
    "frontier_integral": (0, 1),
    "mean_iou": (0, 1),
    "mean_accuracy": (0, 1),
    "overall_accuracy": (0, 1),
    "meteor": (0, 1),
    "mse": (0, 1),
    "perplexity": (0, float("inf")),
    "rogue1": (0, 1),
    "rogue2": (0, 1),
    "sari": (0, 100),
}