Knn Challenge - Diabetes classification

I have followed all the instructions to make the csv file and used the right code still i am getting an accuracy of 78%

Hey aryan…
78% accuracy is quite okay when working with knn algorithm.
it is very intuitive and non parameterised algo. Also, we don’t have much flexibility for the number of parameters that we can tune in knn only we have choice for K value , Type of distance. One thing you can try is different number of odd values for K.
But in this dataset knn won’t give better than 78.
If you want higher accuracy you can use other classification algorithms.

Thanks :slight_smile: