test_edit_distance_op.py 2.9 KB
Newer Older
Y
Yibing Liu 已提交
1 2 3 4 5 6 7 8
import unittest
import numpy as np
from op_test import OpTest


def Levenshtein(hyp, ref):
    """ Compute the Levenshtein distance between two strings.

9
    :param hyp: hypothesis string in index
Y
Yibing Liu 已提交
10
    :type hyp: list
11
    :param ref: reference string in index
Y
Yibing Liu 已提交
12 13 14 15 16 17 18 19 20
    :type ref: list
    """
    m = len(hyp)
    n = len(ref)
    if m == 0:
        return n
    if n == 0:
        return m

21
    dist = np.zeros((m + 1, n + 1)).astype("float32")
Y
Yibing Liu 已提交
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
    for i in range(0, m + 1):
        dist[i][0] = i
    for j in range(0, n + 1):
        dist[0][j] = j

    for i in range(1, m + 1):
        for j in range(1, n + 1):
            cost = 0 if hyp[i - 1] == ref[j - 1] else 1
            deletion = dist[i - 1][j] + 1
            insertion = dist[i][j - 1] + 1
            substitution = dist[i - 1][j - 1] + cost
            dist[i][j] = min(deletion, insertion, substitution)
    return dist[m][n]


class TestCTCEditDistanceOp(OpTest):
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
    def setUp(self):
        self.op_type = "edit_distance"
        normalized = False
        x1 = np.array([[0, 12, 3, 5, 8, 2]]).astype("int32")
        x2 = np.array([[0, 12, 4, 7, 8]]).astype("int32")
        x1 = np.transpose(x1)
        x2 = np.transpose(x2)
        x1_lod = [0, 1, 5]
        x2_lod = [0, 3, 4]

        num_strs = len(x1_lod) - 1
        distance = np.zeros((num_strs, 1)).astype("float32")
        for i in range(0, num_strs):
            distance[i] = Levenshtein(
                hyp=x1[x1_lod[i]:x1_lod[i + 1]],
                ref=x2[x2_lod[i]:x2_lod[i + 1]])
            if normalized is True:
                len_ref = x2_lod[i + 1] - x2_lod[i]
                distance[i] = distance[i] / len_ref
        self.attrs = {'normalized': normalized}
        self.inputs = {'Hyps': (x1, [x1_lod]), 'Refs': (x2, [x2_lod])}
        self.outputs = {'Out': distance}

    def test_check_output(self):
        self.check_output()


class TestCTCEditDistanceOpNormalized(OpTest):
Y
Yibing Liu 已提交
66
    def setUp(self):
67
        self.op_type = "edit_distance"
Y
Yibing Liu 已提交
68
        normalized = True
69 70 71 72 73 74
        x1 = np.array([[0, 10, 3, 6, 5, 8, 2]]).astype("int32")
        x2 = np.array([[0, 10, 4, 6, 7, 8]]).astype("int32")
        x1 = np.transpose(x1)
        x2 = np.transpose(x2)
        x1_lod = [0, 1, 3, 6]
        x2_lod = [0, 2, 3, 5]
Y
Yibing Liu 已提交
75

76 77 78 79 80 81 82 83 84
        num_strs = len(x1_lod) - 1
        distance = np.zeros((num_strs, 1)).astype("float32")
        for i in range(0, num_strs):
            distance[i] = Levenshtein(
                hyp=x1[x1_lod[i]:x1_lod[i + 1]],
                ref=x2[x2_lod[i]:x2_lod[i + 1]])
            if normalized is True:
                len_ref = x2_lod[i + 1] - x2_lod[i]
                distance[i] = distance[i] / len_ref
Y
Yibing Liu 已提交
85
        self.attrs = {'normalized': normalized}
86
        self.inputs = {'Hyps': (x1, [x1_lod]), 'Refs': (x2, [x2_lod])}
Y
Yibing Liu 已提交
87 88 89 90 91 92 93 94
        self.outputs = {'Out': distance}

    def test_check_output(self):
        self.check_output()


if __name__ == '__main__':
    unittest.main()