classification learner app accuracy changed with every run command why?
조회 수: 3 (최근 30일)
이전 댓글 표시
same feature dataset its accuracy changed for every classifier evrytime why? how can i get correct result?
댓글 수: 0
답변 (1개)
Walter Roberson
2016년 5월 24일
I would suspect that some of the work involves random numbers. If you use rng() to set the same seed each time before classification then you would probably get the same result each time.
댓글 수: 2
Walter Roberson
2016년 5월 25일
Call
rng(12345)
then invoke the learner app and train once. Then exit the learner app and repeat the sequence, rng(12345) and go back into the learner app and train once again. I suspect you will get the same results.
참고 항목
카테고리
Help Center 및 File Exchange에서 Classification Learner App에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!