A collection of filters to use with feyn Models.
class Complexity
def __init__(
complexity: int
) -> Complexity
Use this class to get a filter for selecting models with a specific complexity.
class ContainsFunctions
def __init__(
functions: Union[str, List[str]]
) -> ContainsFunctions
Use this class to get a filter for including only models that exclusively consist of the named functions.
class ContainsInputs
def __init__(
input_name: Union[str, List[str]]
) -> ContainsInputs
Use this class to get a filter for including only models that contain specific named inputs.
class ExcludeFunctions
def __init__(
functions: Union[str, List[str]]
) -> ExcludeFunctions
Use this class to get a filter for excluding models that contain any of the named functions.