vumichien commited on
Commit
32f27ed
1 Parent(s): f45df97

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -15,7 +15,8 @@ model_card = f"""
15
 
16
  The **DecisionTreeClassifier** employs a pruning technique that can be configured using the cost complexity parameter, commonly referred to as **ccp_alpha**.
17
  By increasing the value of **ccp_alpha**, a greater number of nodes can be pruned.
18
- In this demo, a DecisionTreeClassifier will be trained on the Breast Cancer dataset. Then, the effect of **ccp_alpha** in many terms of the tree-based model like the impurity of leaves, depth, number of nodes, and accuracy on train and test data are shown in many figures.
 
19
  Based on this information, the best number of **ccp_alpha** is chosen. This demo also shows the results of the best **ccp_alpha** with accuracy on train and test datasets.
20
  You can play around with different ``test size`` and ``random state``
21
 
 
15
 
16
  The **DecisionTreeClassifier** employs a pruning technique that can be configured using the cost complexity parameter, commonly referred to as **ccp_alpha**.
17
  By increasing the value of **ccp_alpha**, a greater number of nodes can be pruned.
18
+ In this demo, a DecisionTreeClassifier will be trained on the Breast Cancer dataset.
19
+ Then, the effect of **ccp_alpha** in many terms of the tree-based model like the impurity of leaves, depth, number of nodes, and accuracy on train and test data are shown in many figures.
20
  Based on this information, the best number of **ccp_alpha** is chosen. This demo also shows the results of the best **ccp_alpha** with accuracy on train and test datasets.
21
  You can play around with different ``test size`` and ``random state``
22