Optimize Fitted KNN Classifier
조회 수: 4 (최근 30일)
이전 댓글 표시
I have questions about the "Optimize Fitted KNN Classifier" example (https://www.mathworks.com/help/stats/fitcknn.html).
Is there any rule to change values of "NumNeighbors" and "Distance" while iteration?
It just seems random.
And, I'm not sure the final model with below "NumNeighbors" and "Distance" is the best optimized model or not.
How can you assure the final model is the best optimized?
댓글 수: 0
답변 (1개)
Bhargavi Maganuru
2019년 11월 28일
Values of “NumNeighbors” and “Distance” are changing because of setting property ‘OptimizeHyperparameters' to ‘auto’ which will try to optimize the “distance” and “NumNeighbours” parameters.
Refer to the following link for more information about ‘OptimizeHyperparameters'
To pick best estimate, bayesian optimization acquisition function 'expected-improvement-plus' is used. It calculates best estimated feasible point using ‘bestpoint’ function.
For more information about ‘bestpoint’ refer the link
Hope this helps!
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!