Hello, my code is nearly the same as the correction but i get this error
entry 8 is
from sklearn.model_selection import validation_curve
import numpy as np
range_gamma = np.logspace(-3, 2, num=30)
train_scores, test_scores = validation_curve(
clf, data, target, param_name="svc__gamma", param_range=range_gamma,
cv=ShuffleSplit(random_state=0), scoring="neg_mean_absolute_error", n_jobs=2)
clf is the pipeline
clf = make_pipeline(StandardScaler(), SVC())