Binary classification
이전 댓글 표시
Hey all!
My question: Is it possible to use classification methods to determine if an unknown sample fits the distribution of known samples?
I have a known dataset that constitutes an object parameters distribution (various circles with various proprieties as circularity, area, perimeter, solidity, etc.). Rows are independent samples, and columns are each parameters. The problem is that I need the function to determine if a new sample is a circle or not. From what I saw in classification, you need to specify every class, there is no "everything else" class. What should be the best way to find if the new object is a circle or not (here circle is really just an example) and have an error or confidence measurements on the decision?
Regards,
Olivier
채택된 답변
추가 답변 (1개)
Walter Roberson
2012년 5월 24일
0 개 추천
It might be possible with some classifiers, but not for most.
Some classifiers just divide the area into two planes or two hyperplanes, and define the class according to which side of the hyperplane one is on.
Other classifiers provide a probability of belonging to a particular class, but those probabilities are never 0. You could, naturally, arbitrarily say that a sample is not in either class if the probability of belonging is "small enough" for both of the classes.
카테고리
도움말 센터 및 File Exchange에서 Statistics and Machine Learning Toolbox에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!