Suite#

class Suite[source]#

NLP 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.config()

Return suite configuration (checks' conditions' configuration not yet supported).

Suite.from_config(conf[, version_unmatch])

Return suite object from a CheckConfig object.

Suite.from_json(conf[, version_unmatch])

Deserialize suite instance from JSON string.

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.

Suite.to_json([indent])

Serialize suite instance to JSON string.