// types - float, int, str
// Below is example code that used to not work.
X = np.random.randn(10, 1)
y = X[:, 0] > 0
model = BayesSearchCV(
estimator=SVC(),
After Change
return 0.0
// Below is example code that used to not work.
X, y = make_classification(10, 4)
model = BayesSearchCV(
estimator=TypeCheckEstimator(),