Changes between Version 42 and Version 43 of Parallel-DT


Ignore:
Timestamp:
Jan 18, 2010, 9:45:49 PM (14 years ago)
Author:
andrei.minca
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Parallel-DT

    v42 v43  
    2626== Parallel approaches ==
    2727
    28 === Syncronous Tree Construction - Depth First Expansion Strategy === - the one that we implemented
     28=== Syncronous Tree Construction - Depth First Expansion Strategy ===  [the one that we implemented]
    2929
    3030In this approach, all processors construct a decision tree syncronously by sending and receiving class distribution information of local data. Major steps for the approach:
     
    3737
    3838[[Image(SyncronusTreeConstruction-DepthFirstExpansionStrategy.jpg)]]
     39
     40The figure above shows the overall picture.
     41The advantage of this approach is that it does not require any movement of the training data items. However, this algorithm suffers from high communication cost and load imbalance. For each nod ein the decision tree, after collecting the class dstribution information, all the processors need to syncronize and exchange the distribution information.
    3942
    4043=== Partitioned Tree Construction ===