K-nearest neighbour Classifier- Cross validation
이전 댓글 표시
Hi, I am working of classifiers. My problem is as follow:
train_labels = Nx1; train_data = NxD;
test_ labels = Mx1; test_data = MxD;
where, M>>N;
I am using Knn classifier and I have to find the classification accuracy by k-fold cross-validation. Any help?
댓글 수: 1
PIRC
2023년 8월 30일
which is helpful for identify the optimal K value and avoid overfitting, underfitting issues
답변 (1개)
Tom Lane
2013년 1월 11일
0 개 추천
This example illustrates k-fold cross validation for knn classification:
However, you ordinarily wouldn't divide your data into train/test sets if you were going to use cross-validation.
카테고리
도움말 센터 및 File Exchange에서 Nearest Neighbors에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!