classification learner app accuracy changed with every run command why?

6 次查看(过去 30 天)
same feature dataset its accuracy changed for every classifier evrytime why? how can i get correct result?

回答(1 个)

Walter Roberson
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
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.

请先登录,再进行评论。

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by