-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.Rmd
38 lines (26 loc) · 810 Bytes
/
index.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
---
title: "Boosting methods: Theory and application in R"
author: "Emanuel Sommer"
date: "`r Sys.Date()`"
site: bookdown::bookdown_site
documentclass: book
bibliography: [book.bib, packages.bib]
biblio-style: apalike
csl: the-annals-of-statistics.csl
always_allow_html: true
link-citations: yes
nocite: '@*'
description: "Boosting methods: Theory and Application in R (XGBoost)"
github-repo: EmanuelSommer/boosting_methods
---
# Prerequisites
The reader should have some basic knowledge of the following topics:
- Statistical learning
- Train/ test split
- Cross-validation
- Overfitting
- Gradient descent
- Bias variance trade-off
- Hyperparameters
- Regression trees and random forest models
- Basic R knowledge (only for the applied part)