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