I want to develop an Learn++ Algorithm same as Adaboost but small variation..I tried to modify the code of example.m but it was not possible.

1 view (last 30 days)
Learn++ Algorithm.For that i will attach an image ..... What i basically need is that an adaboost example should take an user defined inputs in txt file as an datasets and plot result accordingly...i have attached an text file of datasets....this file it should take as an intake.and produce results as same as adaboost.

Answers (1)

Ilya
Ilya on 14 Mar 2014
I don't know what example.m is to which you are referring.
Sounds like you need the AdaBoost algorithm. Step 2 makes me think you want to boost by resampling. Instead of sampling from Dt in step 2, you could use the entire training set and pass weights to the next weak learner. Then you would boost by reweighting.
Both kinds of AdaBoost, by resampling and reweighting, are available from the fitensemble function in the Statistics Toolbox. Use the 'Resample' parameter to turn resampling on or off.
  2 Comments
Yogesh Mali
Yogesh Mali on 15 Mar 2014
Thank you for ur valuable response but sir I m looking for a code of adaboost such that it will accept user given dataset such as text,xls,csv file from given path and show result according to that....change in dataset will change the output. please help me regarding this.
Ilya
Ilya on 15 Mar 2014
I have pointed you to the code for AdaBoost, and there are various utilities in MATLAB for reading ascii, xls and csv files. Why not start by reading the MATLAB documentation for all these functions?

Sign in to comment.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!