Source code for nubo.test_functions.test_functions

from torch import Tensor


[docs] class TestFunction: """ Parent class for all test functions. """ def __init__(self): pass def __call__(self, x: Tensor) -> Tensor: """ Call ``eval`` method of the test function. """ return self.eval(x)