Skip to content
This repository was archived by the owner on Nov 19, 2020. It is now read-only.
This repository was archived by the owner on Nov 19, 2020. It is now read-only.

Where is Accord.NET AdaBoost Decide method? #843

@HamidEbr

Description

@HamidEbr

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?
It seems that the Adaboost had been left behind when most of the existing classifiers were upgraded to the .Decide() API last year!

Here is stackoverflow topic of this request!

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions