-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #185 from chhoumann/background-ensemble-learning-r…
…ewrite Background rewrite ensemble learning
- Loading branch information
Showing
4 changed files
with
13 additions
and
16 deletions.
There are no files selected for viewing
13 changes: 6 additions & 7 deletions
13
report_thesis/src/sections/background/ensemble_learning_models/ensemble_learning.tex
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
\subsubsection{Ensemble Learning} | ||
Ensemble learning is a technique in machine learning where multiple models, known as \textit{weak learners}, are combined to produce more accurate predictions. | ||
Mathematically, ensemble learning can be defined as combining the predictions of $M$ weak learners to form a final prediction $\hat{y}$, such that: | ||
\begin{equation} | ||
\hat{y} = \sum_{m=1}^{M} \alpha_m \hat{y}_m, | ||
\end{equation} | ||
where $\hat{y}_m$ is the prediction of the $m$-th weak learner and $\alpha_m$ is the weight assigned to the $m$-th weak learner. | ||
While there are various choices for weak learners, decision trees are a common choice\cite{James2023AnIS}. | ||
Ensemble learning is a machine learning technique that combines multiple models, referred to as weak learners, to generate more accurate predictions. | ||
Individually, the predictive ability of weak learners may be limited, but when combined, they can produce a more precise and robust model. | ||
Ensemble learning encompasses several methods, including bagging, boosting, and stacking\cite{James2023AnIS, pavlyshenko2018stacking} | ||
|
||
In this section, we provide an overview of the ensemble learning methods used in this work. | ||
We begin by introducing decision trees, a commonly used weak learner in ensemble methods. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 4 additions & 6 deletions
10
...ons/background/stacked_generalization.tex → ...earning_models/stacked_generalization.tex
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters