Where is Accord.NET AdaBoost Decide method?

141 views Asked by At

I'm trying to use Accord.NET library for objects classification, but I failed to find any suitable examples and documentation is not enough to understand the process. My current code is

Predictor = new Boost<DecisionStump>();
AdaBoost<DecisionStump> Algo = new AdaBoost<DecisionStump>(Predictor, new ModelConstructor<DecisionStump>((double[] weights) => new DecisionStump(10)));
Algo.Run(inputs, outputs);

This code works well, but i want to use Decide method like other classifiers in accord.net, how can i do it?

1

There are 1 answers

0
HamidEbr On BEST ANSWER