Suite#

class Suite[source]#

Tabular suite to run checks of types: TrainTestCheck, SingleDatasetCheck, ModelOnlyCheck.

__init__(name: str, *checks: Union[BaseCheck, BaseSuite])[source]#
__new__(*args, **kwargs)#

Attributes

Methods

Suite.add(check)

Add a check or a suite to current suite.

Suite.remove(index)

Remove a check by given index.

Suite.run([train_dataset, test_dataset, ...])

Run all checks.

Suite.supported_checks()

Return tuple of supported check types of this suite.