Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 15 additions & 15 deletions sklearn/ensemble/_forest.py
Original file line number Diff line number Diff line change
Expand Up @@ -2161,11 +2161,11 @@ def __init__(
def __sklearn_tags__(self):
tags = super().__sklearn_tags__()
# TODO: replace by a statistical test, see meta-issue #16298
tags._xfail_checks = {
"check_sample_weight_equivalence": (
"sample_weight is not equivalent to removing/repeating samples."
),
}
# tags._xfail_checks = {
# "check_sample_weight_equivalence": (
# "sample_weight is not equivalent to removing/repeating samples."
# ),
# }
return tags


Expand Down Expand Up @@ -2548,11 +2548,11 @@ def __init__(
def __sklearn_tags__(self):
tags = super().__sklearn_tags__()
# TODO: replace by a statistical test, see meta-issue #16298
tags._xfail_checks = {
"check_sample_weight_equivalence": (
"sample_weight is not equivalent to removing/repeating samples."
),
}
# tags._xfail_checks = {
# "check_sample_weight_equivalence": (
# "sample_weight is not equivalent to removing/repeating samples."
# ),
# }
return tags


Expand Down Expand Up @@ -3675,9 +3675,9 @@ def transform(self, X):
def __sklearn_tags__(self):
tags = super().__sklearn_tags__()
# TODO: replace by a statistical test, see meta-issue #16298
tags._xfail_checks = {
"check_sample_weight_equivalence": (
"sample_weight is not equivalent to removing/repeating samples."
),
}
# tags._xfail_checks = {
# "check_sample_weight_equivalence": (
# "sample_weight is not equivalent to removing/repeating samples."
# ),
# }
return tags
Loading