Nearest-Neighbor Methods
Posted donggongdechen
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Nearest-Neighbor Methods相关的知识,希望对你有一定的参考价值。
Nearest-neighbor methods use those observations in the training set T closest in input space to x form Y-hat.
Specifically, the k-nearest neighbor fit for Y-hat is difined as follows: Y(x)=1/kΣyi,xi belong to Nk(x).
where Nk(x) is the neighborhood of x defined by the k closest points xi in the traing sample.
Closeness implies a metric, which for the moment we assume is Euclidean distance. So, in words, we find the k observations with xi closest to x in input space, and average their responses.
以上是关于Nearest-Neighbor Methods的主要内容,如果未能解决你的问题,请参考以下文章