def __add__()

in svinfer/processor/matrix.py [0:0]


    def __add__(self, other):
        if isinstance(other, int) or isinstance(other, float):
            return NumpyMatrix(self.value + other)
        if isinstance(other, NumpyMatrix):
            return NumpyMatrix(self.value + other.value)
        return NotImplemented