skglm icon indicating copy to clipboard operation
skglm copied to clipboard

ENH/BUG? check_estimator has some very adversarial cases for SVC

Open mathurinm opened this issue 3 years ago • 1 comments

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)

mathurinm avatar Aug 30 '22 15:08 mathurinm

@Klopfe maybe you know what's going on ?

mathurinm avatar Aug 30 '22 15:08 mathurinm