Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
974 views

Multilabel AdaBoost for MATLAB

I am currently looking for a multilabel AdaBoost implementation for MATLAB or a technique for efficiently using a two-label implementation for the multilabel case. Any help in that matter would be ...
3
votes
4answers
319 views

state-of-the-art of classification algorithms

We know there are like a thousand of classifiers, recently I was told that, some people say adaboost is like the out of the shell one. Are There better algorithms (with that voting idea) What is ...
2
votes
2answers
1k views

Explaining the AdaBoost Algorithms to non-technical people

I've been trying to understand the AdaBoost algorithm without much success. I'm struggling with understanding the Viola Jones paper on Face Detection as an example. Can you explain AdaBoost in ...
1
vote
2answers
534 views

AdaBoost ML algorithm python implementation

Is there anyone that has some ideas on how to implement the AdaBoost (Boostexter) algorithm in python? Cheers!
0
votes
3answers
62 views

Implementing Adaboost for multiple dimensions in Java

I'm working on AdaBoost implementation in Java. It should have work for "double" coordinates on 2D 3D or 10D. All I found for Java is for a binary data (0,1) and not for multi-dimensional space. I'm ...
0
votes
0answers
30 views

Updating NaiveBayes classifier in matlab

I'm writing a program for online versions of Bagging and AdaBoost algorithms and I'm using matlab's NaiveBayes classifier as the weak learner. Since as online learners they should get data one at a ...
0
votes
1answer
46 views

Learning in C++/Waffles with object weights

I wonder if it is possible to pass object weights along with features in Waffles supervised learners (e.g. decision trees) for boosting purposes?
0
votes
1answer
141 views

Ensemble classifiers (Random Forest, Bagging, Boosting, etc.) in SSAS

I am using SSAS (SQL Server 2008 R2) to develop a classification model for a data set where 80% of values are missing. Ensemble classifiers based on trees are supposedly the best solution (Random ...
0
votes
0answers
72 views

how to implement a faster version of adaboost ?? Fast statboost

I recently came across a paper where the author claims that the training time has been reduced from weeks to a few hours by using statistics. The paper is found here: ...
0
votes
2answers
513 views

Training sets for AdaBoost algorithm

How do you find the negative and positive training data sets of Haar features for the AdaBoost algorithm? So say you have a certain type of blob that you want to locate in an image and there are ...
0
votes
1answer
1k views

Adaboost algorithm and its usage in face detection

I am trying to understand Adaboost algorithm but i have some troubles. After reading about Adaboost i realized that it is a classification algorithm(somehow like neural network). But i could not know ...