Thanks to visit codestin.com
Credit goes to www.scribd.com

0% found this document useful (0 votes)
31 views1 page

Decision Tree Hyperparameters

The document outlines the hyperparameters for decision trees, including their descriptions and possible values. Key hyperparameters include 'criterion' for split quality, 'max_depth' for tree depth, and 'min_samples_split' for minimum samples to split a node. Additional parameters like 'max_features' and 'random_state' control feature selection and randomness, respectively.

Uploaded by

kingjaqfaq
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
31 views1 page

Decision Tree Hyperparameters

The document outlines the hyperparameters for decision trees, including their descriptions and possible values. Key hyperparameters include 'criterion' for split quality, 'max_depth' for tree depth, and 'min_samples_split' for minimum samples to split a node. Additional parameters like 'max_features' and 'random_state' control feature selection and randomness, respectively.

Uploaded by

kingjaqfaq
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

Decision Tree Hyperparameters

Hyperparameter Description Possible Values

criterion Function to measure the quality of a split classification: 'gini', 'entropy'; regression: 'squ

splitter Strategy used to choose the split at each node 'best', 'random'

max_depth Maximum depth of the tree int or None

min_samples_split Minimum number of samples required to split an internal


int, float
node

min_samples_leaf Minimum number of samples required to be at a leafint,


node
float

max_features Number of features to consider when looking for theint,


best
float,
split'auto', 'sqrt', 'log2', None

random_state Controls the randomness of the estimator int, RandomState instance, None

max_leaf_nodes Maximum number of leaf nodes in the tree int, None

min_impurity_decrease A node will be split if this split induces a decrease infloat


impurity greater than or equal to this value

You might also like