@@ -44,15 +44,9 @@ FILTER_GIVEN_ISSUE = Dict(
44
44
" MultiTaskLassoCVRegressor" ,
45
45
" MultiTaskLassoRegressor" ,
46
46
],
47
- " https://github.com/JuliaAI/FeatureSelection.jl/issues/15" =>
48
- model -> model. package_name == " FeatureSelection" &&
49
- model. name == " RecursiveFeatureElimination" ,
50
47
" https://github.com/sylvaticus/BetaML.jl/issues/75" =>
51
48
model -> model. package_name == " BetaML" &&
52
49
model. name == " NeuralNetworkClassifier" ,
53
- " https://github.com/MilesCranmer/SymbolicRegression.jl/issues/390" =>
54
- model -> model. package_name == " SymbolicRegression" &&
55
- model. name == " SRRegressor" ,
56
50
# "https://github.com/JuliaAI/Imbalance.jl/issues/103" =>
57
51
# model -> model.package_name == "Imbalance",
58
52
)
@@ -140,7 +134,8 @@ for model in WITHOUT_DATASETS
140
134
end
141
135
142
136
# Additionally exclude some models for which the inferred datasets have a model-specific
143
- # pathology that prevents valid generic test.
137
+ # pathology that prevents valid generic test, or for some other reason requiring complete
138
+ # exclusion from testing.
144
139
145
140
PATHOLOGIES = filter (MODELS) do model
146
141
# in the subsampling occuring in stacking, we get a Cholesky
@@ -156,10 +151,8 @@ PATHOLOGIES = filter(MODELS) do model
156
151
(model. name == " LOCIDetector" && model. package_name == " OutlierDetectionPython" ) ||
157
152
# TO REDUCE TESTING TIME
158
153
model. package_name == " MLJScikitLearnInterface" ||
159
- # can be removed after resolution of
160
- # https://github.com/JuliaAI/FeatureSelection.jl/issues/15
161
- # and a Model Registry update
162
- model. name == " RecursiveFeatureElimination"
154
+ # "https://github.com/MilesCranmer/SymbolicRegression.jl/issues/390" =>
155
+ model. package_name == " SymbolicRegression"
163
156
end
164
157
165
158
WITHOUT_DATASETS = vcat (WITHOUT_DATASETS, PATHOLOGIES)
0 commit comments