473,385 Members | 1,983 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,385 software developers and data experts.

AdaBoost Question

I'm using AdaBoost on optical flow data to learn to recognize human
actions. I've split my optical flow data into 5 channels (positive x,
negative x, positive y, negative y, and 'zero'). I know how to use
AdaBoost on a single channel, but I'm not sure how to combine the 5
channels to form a better classifier. Do I run AdaBoost on each
channel, and then pass the 5 outputs to another AdaBoost, or should I
simply concatenate the 5 channels and run AdaBoost once on all of
them?

Thanks,
Mark
Jun 27 '08 #1
5 2793
Mark wrote:
I'm using AdaBoost on optical flow data to learn to recognize human
actions. I've split my optical flow data into 5 channels (positive x,
negative x, positive y, negative y, and 'zero'). I know how to use
AdaBoost on a single channel, but I'm not sure how to combine the 5
channels to form a better classifier. Do I run AdaBoost on each
channel, and then pass the 5 outputs to another AdaBoost, or should I
simply concatenate the 5 channels and run AdaBoost once on all of
them?
What's "AdaBoost"?

V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask
Jun 27 '08 #2
On May 14, 1:07 pm, Victor Bazarov <v.Abaza...@comAcast.netwrote:
Mark wrote:
I'm using AdaBoost on optical flow data to learn to recognize human
actions. I've split my optical flow data into 5 channels (positive x,
negative x, positive y, negative y, and 'zero'). I know how to use
AdaBoost on a single channel, but I'm not sure how to combine the 5
channels to form a better classifier. Do I run AdaBoost on each
channel, and then pass the 5 outputs to another AdaBoost, or should I
simply concatenate the 5 channels and run AdaBoost once on all of
them?

What's "AdaBoost"?

V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask
AdaBoost is a boosting/machine learning algorithm. It's short for
Adaptive Boosting (http://en.wikipedia.org/wiki/AdaBoost). My
question isn't exactly specific to AdaBoost. The output of AdaBoost
is a class. For example, I've got some videos where I am waving my
hand, and some where I am not. AdaBoost spits out "pos" for waving,
or "neg" for not waving. I could run AdaBoost on my 5 channels, and
do something like a majority vote, or use AdaBoost to figure out how
many "pos"s it actually needs.... or I can perhaps pass the confusion
matrix in as input... Basically, I need to figure out how to make it
multi-layer. (Btw, I'm achieving a 13% error rate using just 1
channel! This is exciting)

Mark
Jun 27 '08 #3
On May 14, 1:14 pm, Mark <mnbaya...@gmail.comwrote:
On May 14, 1:07 pm, Victor Bazarov <v.Abaza...@comAcast.netwrote:
Mark wrote:
I'm using AdaBoost on optical flow data to learn to recognize human
actions. I've split my optical flow data into 5 channels (positive x,
negative x, positive y, negative y, and 'zero'). I know how to use
AdaBoost on a single channel, but I'm not sure how to combine the 5
channels to form a better classifier. Do I run AdaBoost on each
channel, and then pass the 5 outputs to another AdaBoost, or should I
simply concatenate the 5 channels and run AdaBoost once on all of
them?
What's "AdaBoost"?
V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask

AdaBoost is a boosting/machine learning algorithm. It's short for
Adaptive Boosting (http://en.wikipedia.org/wiki/AdaBoost). My
question isn't exactly specific to AdaBoost. The output of AdaBoost
is a class. For example, I've got some videos where I am waving my
hand, and some where I am not. AdaBoost spits out "pos" for waving,
or "neg" for not waving. I could run AdaBoost on my 5 channels, and
do something like a majority vote, or use AdaBoost to figure out how
many "pos"s it actually needs.... or I can perhaps pass the confusion
matrix in as input... Basically, I need to figure out how to make it
multi-layer. (Btw, I'm achieving a 13% error rate using just 1
channel! This is exciting)

Mark
Actually, I'll just try concatenating the 5 channels. Thanks anyways.
Jun 27 '08 #4
Mark wrote:
On May 14, 1:14 pm, Mark <mnbaya...@gmail.comwrote:
>On May 14, 1:07 pm, Victor Bazarov <v.Abaza...@comAcast.netwrote:
>>Mark wrote:
I'm using AdaBoost on optical flow data to learn to recognize human
actions. I've split my optical flow data into 5 channels (positive x,
negative x, positive y, negative y, and 'zero'). I know how to use
AdaBoost on a single channel, but I'm not sure how to combine the 5
channels to form a better classifier. Do I run AdaBoost on each
channel, and then pass the 5 outputs to another AdaBoost, or should I
simply concatenate the 5 channels and run AdaBoost once on all of
them?
What's "AdaBoost"?
V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask
AdaBoost is a boosting/machine learning algorithm. It's short for
Adaptive Boosting (http://en.wikipedia.org/wiki/AdaBoost). My
question isn't exactly specific to AdaBoost. The output of AdaBoost
is a class. For example, I've got some videos where I am waving my
hand, and some where I am not. AdaBoost spits out "pos" for waving,
or "neg" for not waving. I could run AdaBoost on my 5 channels, and
do something like a majority vote, or use AdaBoost to figure out how
many "pos"s it actually needs.... or I can perhaps pass the confusion
matrix in as input... Basically, I need to figure out how to make it
multi-layer. (Btw, I'm achieving a 13% error rate using just 1
channel! This is exciting)

Mark

Actually, I'll just try concatenating the 5 channels. Thanks anyways.
You're welcome; glad to have helped... I am still perplexed about the
reasons that led you to the *C++ language* newsgroup.

V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask
Jun 27 '08 #5
On May 14, 3:30 pm, Victor Bazarov <v.Abaza...@comAcast.netwrote:
Mark wrote:
On May 14, 1:14 pm, Mark <mnbaya...@gmail.comwrote:
On May 14, 1:07 pm, Victor Bazarov <v.Abaza...@comAcast.netwrote:
>Mark wrote:
I'm using AdaBoost on optical flow data to learn to recognize human
actions. I've split my optical flow data into 5 channels (positive x,
negative x, positive y, negative y, and 'zero'). I know how to use
AdaBoost on a single channel, but I'm not sure how to combine the 5
channels to form a better classifier. Do I run AdaBoost on each
channel, and then pass the 5 outputs to another AdaBoost, or should I
simply concatenate the 5 channels and run AdaBoost once on all of
them?
What's "AdaBoost"?
V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask
AdaBoost is a boosting/machine learning algorithm. It's short for
Adaptive Boosting (http://en.wikipedia.org/wiki/AdaBoost). My
question isn't exactly specific to AdaBoost. The output of AdaBoost
is a class. For example, I've got some videos where I am waving my
hand, and some where I am not. AdaBoost spits out "pos" for waving,
or "neg" for not waving. I could run AdaBoost on my 5 channels, and
do something like a majority vote, or use AdaBoost to figure out how
many "pos"s it actually needs.... or I can perhaps pass the confusion
matrix in as input... Basically, I need to figure out how to make it
multi-layer. (Btw, I'm achieving a 13% error rate using just 1
channel! This is exciting)
Mark
Actually, I'll just try concatenating the 5 channels. Thanks anyways.

You're welcome; glad to have helped... I am still perplexed about the
reasons that led you to the *C++ language* newsgroup.

V
--
Please remove capital 'A's when replying by e-mail
I do not respond to top-posted replies, please don't ask
I guess it's not really specific to C++ either, huh? I'm using a C++
implementation of AdaBoost (called 'MultiBoost')... nevertheless, I
didn't think there was a group dedicated to boosting, although perhaps
I should have searched for machine learning or something.

Mark
Jun 27 '08 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: Stevey | last post by:
I have the following XML file... <?xml version="1.0"?> <animals> <animal> <name>Tiger</name> <questions> <question index="0">true</question> <question index="1">true</question> </questions>
7
by: nospam | last post by:
Ok, 3rd or is it the 4th time I have asked this question on Partial Types, so, since it seems to me that Partial Types is still in the design or development stages at Microsoft, I am going to ask...
3
by: Ekqvist Marko | last post by:
Hi, I have one Access database table including questions and answers. Now I need to give answer id automatically to questionID column. But I don't know how it is best (fastest) to do? table...
7
by: nospam | last post by:
Ok, 3rd or is it the 4th time I have asked this question on Partial Types, so, since it seems to me that Partial Types is still in the design or development stages at Microsoft, I am going to ask...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.