valid1 = plot_validation_curve(rand_search.best_estimator_, X_train, y_train,
cv=StratifiedKFold(n_splits=5), param_range=np.arange(2,100,2),
param_name = 'max_depth', scoring='f1')
I am using the plot_validation_curve fxn from sklearn. Let's say I pick out a spot on the curve that I think is the best. Now I want to confirm the actual x, y values. How do I label the points on the curve itself? Thanks!
I tried to label data points as one would with matplotlib but it didnt work.