vimwiki

beau's personal wiki, made using vim
git clone https://git.beauhilton.com/vimwiki.git
Log | Files | Refs | README

random_survival_forests.md (675B)


      1 # Random Survival Forests
      2 :machine_learning:
      3 
      4 Random survival forests (RSFs) function by
      5 randomly selecting a bootstrap sample of the data to grow a "tree."
      6 A randomly selected subset of variables is used
      7 to find a candidate variable that maximizes the difference
      8 in survival between subsequent branches,
      9 and this is repeated until the algorithm runs out
     10 of branching points and satisfies the requirement that there be
     11 at least one unique death at the terminal branching points.
     12 
     13 Sampling assumes independence and samples with replacement.
     14 Pull random samples of the same size by allowing duplicate entries (e.g. in row 1, "4" is used twice).
     15 Sun 17 Nov 2019 10:23:05 AM CST