Ejemplo n.º 1
0
def test_multi_reference_rouge():
    """Test for ROUGE score when we only have one reference per target."""
    # One target with perfect ROUGE-1 and one with high ROUGE-2.
    targets = [["g f e d c b a", "a b e f"]]
    responses = ["a b c d e f g"]
    scores = metrics.rouge_fn(targets=targets, responses=responses)
    expected_scores = {"rouge1": 100.0, "rouge2": 44.44, "rougeLsum": 72.73}
    for key, value in scores.items():
        assert pytest.approx(value, 0.01) == expected_scores[key]
Ejemplo n.º 2
0
def test_single_reference_rouge():
    """Test for ROUGE score when we only have one reference per target."""
    # One perfect target and one that has perfect ROUGE-1 but zero ROUGE-2.
    targets = [["a b c d e f g"], ["a b c d e f g"]]
    responses = ["a b c d e f g", "g f e d c b a"]
    scores = metrics.rouge_fn(targets=targets, responses=responses)
    expected_scores = {"rouge1": 100.0, "rouge2": 50.0, "rougeLsum": 57.14}
    for key, value in scores.items():
        assert pytest.approx(value, 0.01) == expected_scores[key]