|
Let's say I implement a method for a certain object classification task, maybe like classifying images as Foo or non-Foo.
So I extract the HOG and some other features from the training data. To reduce the dimension I apply PCA. Then use a linear SVM classifier.
Using different PCA dimensions will give me different classification accuracy on the test set. So I use the optimal dimension and report my test result as the state of the art. |