Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

data tree as a way to talk about problem data #2

Open
barbh1307 opened this issue Nov 21, 2020 · 1 comment
Open

data tree as a way to talk about problem data #2

barbh1307 opened this issue Nov 21, 2020 · 1 comment

Comments

@barbh1307
Copy link
Contributor

Things to think about with trees: Fundamental concepts on data-partitioning, recursive binary splitting, and nodes etc.
Data exploration and data preparation for building classification models
Performance metrics for decision tree models - Gini Index, Entropy, and Classification Error.
https://link.springer.com/article/10.1007/s10994-017-5633-9
https://www-users.cs.umn.edu/~kumar001/dmbook/ch4.pdf
Basically, Classification Trees are a hierarchical way of partitioning the space.
A Decision Tree is a simple representation for classifying examples. It is a Supervised Machine Learning where the data is continuously split according to a certain parameter.
Decision Tree consists of :
Nodes : Test for the value of a certain attribute.
Edges/ Branch : Correspond to the outcome of a test and connect to the next node or leaf.
Leaf nodes : Terminal nodes that predict the outcome (represent class labels or class distribution)

@barbh1307
Copy link
Contributor Author

how policing data relates internally and externally

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant