search for: dietterich

Displaying 2 results from an estimated 2 matches for "dietterich".

Did you mean: dieterich
2004 Jan 06
2
comparing classification methods: 10-fold cv or leaving-one-out ?
Hi what would you recommend to compare classification methods such as LDA, classification trees (rpart), bagging, SVM, etc: 10-fold cv (as in Ripley p. 346f) or leaving-one-out (as e.g. implemented in LDA)? my data-set is not that huge (roughly 200 entries) many thanks for a hint Christoph -- Christoph Lehmann <christoph.lehmann at gmx.ch>
2005 Jan 25
0
Collapsing solution to the question discussed above: Re: multi-class classification using rpart
You could break your 3 class problem into several (2 or 3) 2 class problems, and then use Andy's suggestion (see the CART book). There are several ways to break the problem into 2 class problems, and several ways to combine the resulting classifiers. Tom Dietterich, Jerry Friedman, Trevor Hastie and Rob Tibshirani, among others, have articles on the question, in places like Annals of Statistics, Machine Learning from the mid-to-late 90s. Alternatively, or in addition, you could look at the simulated annealing approach to searching for a good split for a cat...