ALGORITHM 2: AdaBoost.PL.V2 | |
---|---|
Input: Training sets of M participators | |
, and | |
Number of boosting iterations (T). | |
Output: The final classifiers H(·) | |
1 | foreach p in M participators parallel do |
2 | Hp(·) ← AdaBoost; |
3 | Hp*(·) ← the weak classifiers in Hp(·) sorted w.r.t. αp(t); |
4 | Send Hp*(·) to central agent; |
5 | end |
6 | Initialize ; |
7 | for t ← 1 to T do |
8 | h(t)(·) ← Merge (h1*(t)(·), …, hM*(t)(·)); |
9 | ; |
10 | end |
11 | return |