Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
bensadeghi committed Jul 13, 2020
1 parent 4839966 commit 51262cd
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ accuracy = nfoldCV_tree(labels, features,
min_samples_leaf,
min_samples_split,
min_purity_increase;
verbose = true,
rng = seed)
```
Random Forest Classifier
Expand Down Expand Up @@ -168,6 +169,7 @@ accuracy = nfoldCV_forest(labels, features,
min_samples_leaf,
min_samples_split,
min_purity_increase;
verbose = true,
rng = seed)
```
Adaptive-Boosted Decision Stumps Classifier
Expand All @@ -182,7 +184,8 @@ apply_adaboost_stumps_proba(model, coeffs, [5.9,3.0,5.1,1.9], ["Iris-setosa", "I
n_iterations=7; n_folds=3
accuracy = nfoldCV_stumps(labels, features,
n_folds,
n_iterations)
n_iterations;
verbose = true)
```

### Regression Example
Expand Down Expand Up @@ -228,6 +231,7 @@ r2 = nfoldCV_tree(labels, features,
min_samples_leaf,
min_samples_split,
min_purity_increase;
verbose = true,
rng = seed)
```
Regression Random Forest
Expand Down Expand Up @@ -273,6 +277,7 @@ r2 = nfoldCV_forest(labels, features,
min_samples_leaf,
min_samples_split,
min_purity_increase;
verbose = true,
rng = seed)
```

Expand Down

0 comments on commit 51262cd

Please sign in to comment.