ModelComparisonCheck#

class ModelComparisonCheck[source]#

Parent class for check that compares between two or more models.

__init__(**kwargs)[source]#

Initialize the class.

__new__(*args, **kwargs)#

Methods

ModelComparisonCheck.add_condition(name, ...)

Add new condition function to the check.

ModelComparisonCheck.clean_conditions()

Remove all conditions from this check instance.

ModelComparisonCheck.conditions_decision(result)

Run conditions on given result.

ModelComparisonCheck.finalize_check_result(...)

Finalize the check result by adding the check instance and processing the conditions.

ModelComparisonCheck.metadata([with_doc_link])

Return check metadata.

ModelComparisonCheck.name()

Name of class in split camel case.

ModelComparisonCheck.params([show_defaults])

Return parameters to show when printing the check.

ModelComparisonCheck.remove_condition(index)

Remove given condition by index.

ModelComparisonCheck.run(train_datasets, ...)

Initialize context and pass to check logic.

ModelComparisonCheck.run_logic(multi_context)

Implement here logic of check.