-
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.
- Loading branch information
1 parent
5f1c0ee
commit 268ad49
Showing
4 changed files
with
15 additions
and
28 deletions.
There are no files selected for viewing
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,3 +1,9 @@ | ||
= Decision Tree | ||
|
||
Il *Decision Tree* è un modello di apprendimento supervisionato che può essere utilizzato sia per problemi di classificazione | ||
Il *Decision Tree* è un modello di apprendimento supervisionato, che come suggerisce il nome ha una struttura ad albero. Ogni nodo dell'albero può essere: | ||
- Non Terminale: dunque avere 2 o più figli ed implementare una _routing function_. | ||
- Foglia: dunque non avere alcun figlio (_leaf node_) ed implementare una _prediction function_. | ||
|
||
Il Decision Tree è un modello molto semplice e interpretabile (_explainability_); questa caratteristica è uno dei suoi più grandi vantaggi. Inoltre, è un modello molto versatile, in quanto può essere utilizzato sia per problemi di classificazione che di regressione. | ||
|
||
prende in input un vettore di features $x$ e questo viene passato attraverso l'albero fino ad arrivare ad una foglia, che restituirà una predizione. |
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
Binary file not shown.
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