Ask Your Question

PnyDesign's profile - activity

2013-08-28 08:59:42 -0600 commented question CvDTree: Appending training data

Thanks Steven. I saw that same remark. I was sorta thinking that meant that different subclasses of CvStatModel would differ in this respect in their implementation of the train() method. I'll take a look at what it would take to extend/adapt the code. I'll post here if I make any progress.

2013-08-26 15:27:55 -0600 received badge  Editor (source)
2013-08-23 09:45:38 -0600 received badge  Student (source)
2013-08-23 08:53:14 -0600 asked a question CvDTree: Appending training data

This question relates specifically to the CvDTree decision tree class, but also to CvStatModel in general:

Is there a way to append additional training data to a model after the initial call to train() has been made?

According to the documentation, CvStatModel::clear() is generally called by the train() method. If this is the case, what is the most efficient strategy for updating the model with additional training examples? Does the model need to be retrained from scratch?

Thanks!