I am using below code to get best hyper parameter which will give the maximum AUC value through grid search. but i am not able to plot it.
model = KNeighborsClassifier()
#Hyper Parameters Set
params = {'n_neighbors':[5,10,15,20,25,30,35],
'leaf_size':[1,2,3,4],
'weights':['uniform', 'distance'],
'algorithm':['brute']
}
#Making models with hyper parameters sets
model1_tfidf = GridSearchCV(model, param_grid=params)
model1_tfidf.fit(final_X_train_tfidf,y_train)
print("Best Hyper Parameters:\n",model1.best_params_)