i am getting 78% accuracy, i have used the same knn algo with vale of k as 13, what else i could be missing?
How to increase the accuracy?
hey @itzsakshi26gupta ,
there isn’t much things you can with KNN other than changing the value of K.
Achieving 78% with KNN is max you can achieve and its really good.
To further score higher you need to work with other algorithms like SVM , ensemble techniques .
They will help you in it.
1 Like
You can also try with
- feature Selection and Feature Extraction techniques.
Its not that always that all of the data should be used for training . Sometimes only some features lead us to score higher. - Scaling feature value , if required.
- Ofcourse Model now.
ok, thank you so much. I will try these methods