- Machine Learning for OpenCV
- Michael Beyeler
- 174字
- 2021-07-02 19:47:22
Understanding the k-NN algorithm
The k-NN algorithm is arguably one of the simplest machine learning algorithms. The reason for this is that we basically only need to store the training dataset. Then, in order to make a prediction for a new data point, we only need to find the closest data point in the training dataset-its nearest neighbor.
In a nutshell, the k-NN algorithm argues that a data point probably belongs to the same class as its neighbors. Think about it: if our neighbor is a Reds fan, we're probably Reds fans, too; otherwise we would have moved away a long time ago. The same can be said for the Blues.
Of course, some neighborhoods might be a little more complicated. In this case, we would not just consider our closest neighbor (where k=1), but instead our k nearest neighbors. To stick with our example as mentioned earlier, if we were Reds fans, we probably wouldn't move into a neighborhood where the majority of people are Blues fans.
That's all there is to it.
- 動手玩轉Scratch3.0編程:人工智能科創教育指南
- Machine Learning with R Cookbook(Second Edition)
- TypeScript實戰指南
- Visual Basic程序設計實驗指導(第二版)
- SSM開發實戰教程(Spring+Spring MVC+MyBatis)
- INSTANT Silverlight 5 Animation
- 奔跑吧 Linux內核
- PHP項目開發全程實錄(第4版)
- Groovy 2 Cookbook
- 軟件測試技術
- Ubuntu Server Cookbook
- 測試工程師Python開發實戰
- Learning Apache Thrift
- Android從入門到精通
- Implementing Splunk(Second Edition)