skglm
skglm copied to clipboard
ENH/BUG? check_estimator has some very adversarial cases for SVC
To reproduce, run this in test_estimators.py:
estimator_name = "SVC"
clf = clone(dict_estimators_ours[estimator_name])
clf.verbose = 2
clf.tol = 1e-6 # failure in float32 computation otherwise
# if isinstance(clf, WeightedLasso):
# clf.weights = None
check_estimator(clf)
@Klopfe maybe you know what's going on ?