decision tree and random forest implementations for fast
play

Decision Tree and Random Forest Implementations for fast Fitlering - PowerPoint PPT Presentation

Decision Tree and Random Forest Implementations for fast Fitlering of Sensor Data Sebastian Buschj ager and Katharina Morik TU Dortmund University - Computer Science - Artificial Intelligence Group July 3, 2018 1 So... Distributed


  1. Decision Tree and Random Forest Implementations for fast Fitlering of Sensor Data Sebastian Buschj¨ ager and Katharina Morik TU Dortmund University - Computer Science - Artificial Intelligence Group July 3, 2018 1

  2. So... Distributed computation hype? 1991 Ubiquitous Computing 1999 Internet of Things 2015 Edge Computing / Fog Computing Decision Tree and Random Forest Implementations for fast Fitlering of Sensor Data 2

  3. Machine Learning for small devices Fact We measure a lot of data Thus We need to transmit and analyze a lot of data Decision Tree and Random Forest Implementations for fast Fitlering of Sensor Data 3

  4. Machine Learning for small devices Fact We measure a lot of data Thus We need to transmit and analyze a lot of data Idea Use Machine Learning locally to decide which data is useful Thus Continuously apply ML model in realtime on small devices Decision Tree and Random Forest Implementations for fast Fitlering of Sensor Data 3

  5. Random Forest Fact Random Forest is one of the best performing ML model Often We design ML models independently from application Decision Tree and Random Forest Implementations for fast Fitlering of Sensor Data 4

  6. Random Forest Fact Random Forest is one of the best performing ML model Often We design ML models independently from application What system is needed for a given tree / forest? What is the best way to implement a Decision Tree? Decision Tree and Random Forest Implementations for fast Fitlering of Sensor Data 4

  7. Decision Tree Inner nodes make decision x i < t Leaf nodes make prediction � y 0 0.3 0.7 1 2 0.4 0.6 0.2 0.8 3 4 5 6 0.25 0.75 0.1 0.9 0.15 0.85 7 8 9 10 11 12 Decision Tree and Random Forest Implementations for fast Fitlering of Sensor Data 5

  8. Decision Tree Inner nodes make decision x i < t Leaf nodes make prediction � y 0 0.3 0.7 1 2 0.4 0.6 0.2 0.8 3 4 5 6 0.25 0.75 0.1 0.9 0.15 0.85 7 8 9 10 11 12 Observation Some path in tree have higher frequency than others Decision Tree and Random Forest Implementations for fast Fitlering of Sensor Data 5

  9. Probabilistic Analysis of Decision Trees Idea Each decision is a Bernoulli Experiment with probability p i → j Decision Tree and Random Forest Implementations for fast Fitlering of Sensor Data 6

  10. Probabilistic Analysis of Decision Trees Idea Each decision is a Bernoulli Experiment with probability p i → j Path probability p ( π ) = p π 0 → π 1 · . . . · p π L − 1 → π L Decision Tree and Random Forest Implementations for fast Fitlering of Sensor Data 6

  11. Probabilistic Analysis of Decision Trees Idea Each decision is a Bernoulli Experiment with probability p i → j Path probability p ( π ) = p π 0 → π 1 · . . . · p π L − 1 → π L Expected no. of comparisons � E [ L ] = p ( π ) · | π | π Decision Tree and Random Forest Implementations for fast Fitlering of Sensor Data 6

  12. Probabilistic Analysis of Decision Trees Idea Each decision is a Bernoulli Experiment with probability p i → j Path probability p ( π ) = p π 0 → π 1 · . . . · p π L − 1 → π L Expected no. of comparisons � E [ L ] = p ( π ) · | π | π Idea Use expected no. of comparisons to estimate runtime Decision Tree and Random Forest Implementations for fast Fitlering of Sensor Data 6

  13. There are many ways to implement a Decision Tree For Example: NativeTree bool predict(short const * x){ unsigned int i = 0; while(!tree[i].isLeaf) { if (x[tree[i].f] <= tree[i].split) { i = tree[i].left; } else { i = tree[i].right; } } return tree[i].prediction; } Decision Tree and Random Forest Implementations for fast Fitlering of Sensor Data 7

  14. There are many ways to implement a Decision Tree For Example: If-Else-Tree bool predict(short const * x){ if(x[0] <= 8191){ if(x[1] <= 2048){ return true; } else { return false; } } else { if(x[2] <= 512){ return true; } else { return false; } } } Decision Tree and Random Forest Implementations for fast Fitlering of Sensor Data 8

  15. There are many ways to implement a Decision Tree For Example: Vectorized Tree bool predict(short const * x){ unsigned int i = 0; unsigned int mask; void * tmp; while(!tree[i].isLeaf) { load_vectorized(tree[i],tmp); mask = compare_vectorized(tmp, x); i = mask_to_index(mask); } return tree[i].prediction; } Decision Tree and Random Forest Implementations for fast Fitlering of Sensor Data 9

  16. Results So which one is the best? And when? Come visit me at my poster and find out! Decision Tree and Random Forest Implementations for fast Fitlering of Sensor Data 10

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend