Skip to content

Commit

Permalink
taking out the OutlierSampleDetection from the full_suite
Browse files Browse the repository at this point in the history
  • Loading branch information
ItayGabbay committed Apr 28, 2022
1 parent aba238d commit 81e5b08
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions deepchecks/tabular/suites/default_suites.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
ConfusionMatrixReport, RocReport, CalibrationScore,
RegressionErrorDistribution, RegressionSystematicError, PerformanceReport, SimpleModelComparison, BoostingOverfit,
ModelInfo, ColumnsInfo, DataDuplicates, IsSingleValue, LabelAmbiguity, DatasetsSizeComparison,
UnusedFeatures, ModelInferenceTime, ModelErrorAnalysis, TrainTestLabelDrift, OutlierSampleDetection
UnusedFeatures, ModelInferenceTime, ModelErrorAnalysis, TrainTestLabelDrift
)
from deepchecks.tabular import Suite

Expand All @@ -41,8 +41,7 @@ def single_dataset_integrity() -> Suite:
DataDuplicates().add_condition_ratio_not_greater_than(),
StringLengthOutOfBounds().add_condition_ratio_of_outliers_not_greater_than(),
SpecialCharacters().add_condition_ratio_of_special_characters_not_grater_than(),
LabelAmbiguity().add_condition_ambiguous_sample_ratio_not_greater_than(),
OutlierSampleDetection()
LabelAmbiguity().add_condition_ambiguous_sample_ratio_not_greater_than()
)


Expand Down

0 comments on commit 81e5b08

Please sign in to comment.