Skip to content

Commit

Permalink
update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
thierrymoudiki committed Aug 3, 2024
1 parent 5e1fc88 commit f05db7b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions unifiedbooster/gbdt.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ class GBDT(BaseEstimator):
learning_rate: float
shrinkage rate; used for reducing the gradient step
max_depth: int
maximum tree depth
rowsample: float
subsample ratio of the training instances
Expand Down
3 changes: 3 additions & 0 deletions unifiedbooster/gbdt_classification.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ class GBDTClassifier(GBDT, ClassifierMixin):
learning_rate: float
shrinkage rate; used for reducing the gradient step
max_depth: int
maximum tree depth
rowsample: float
subsample ratio of the training instances
Expand Down
3 changes: 3 additions & 0 deletions unifiedbooster/gbdt_regression.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ class GBDTRegressor(GBDT, RegressorMixin):
learning_rate: float
shrinkage rate; used for reducing the gradient step
max_depth: int
maximum tree depth
rowsample: float
subsample ratio of the training instances
Expand Down

0 comments on commit f05db7b

Please sign in to comment.