aboutsummaryrefslogtreecommitdiff
path: root/microposts/random-forests.md
diff options
context:
space:
mode:
authorYuchen Pei <me@ypei.me>2021-07-01 15:16:19 +1000
committerYuchen Pei <me@ypei.me>2021-07-01 15:16:19 +1000
commitbd3b4e7d8a436685f8b676da8f6ffe9498ab2e3f (patch)
tree1d29d70ddb35b18407c69792cd76e66d2a2280b6 /microposts/random-forests.md
parent661762ba8fd5fd685bfbe99473d7286efa85b381 (diff)
Added copyright notices and license headers to website content.
also removed more unused files.
Diffstat (limited to 'microposts/random-forests.md')
-rw-r--r--microposts/random-forests.md14
1 files changed, 0 insertions, 14 deletions
diff --git a/microposts/random-forests.md b/microposts/random-forests.md
deleted file mode 100644
index 93bc704..0000000
--- a/microposts/random-forests.md
+++ /dev/null
@@ -1,14 +0,0 @@
----
-date: 2018-05-15
----
-
-### Notes on random froests
-
-[Stanford Lagunita's statistical learning course](https://lagunita.stanford.edu/courses/HumanitiesSciences/StatLearning/Winter2016/info) has some excellent lectures on random forests. It starts with explanations of decision trees, followed by bagged trees and random forests, and ends with boosting. From these lectures it seems that:
-
-1. The term "predictors" in statistical learning = "features" in machine learning.
-2. The main idea of random forests of dropping predictors for individual trees and aggregate by majority or average is the same as the idea of dropout in neural networks, where a proportion of neurons in the hidden layers are dropped temporarily during different minibatches of training, effectively averaging over an emsemble of subnetworks. Both tricks are used as regularisations, i.e. to reduce the variance. The only difference is: in random forests, all but a square root number of the total number of features are dropped, whereas the dropout ratio in neural networks is usually a half.
-
-By the way, here's a comparison between statistical learning and machine learning from the slides of the Statistcal Learning course:
-
-<a href="../assets/resources/sl-vs-ml.png"><img src="../assets/resources/sl-vs-ml.png" alt="SL vs ML" style="width:38em" /></a>