Skip to content

Commit

Permalink
update docs Pt.3
Browse files Browse the repository at this point in the history
  • Loading branch information
thierrymoudiki committed Aug 2, 2024
1 parent f1d5a66 commit 037fd12
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 @@ -24,6 +24,9 @@ class GBDT(BaseEstimator):
seed: int
reproducibility seed
**kwargs: dict
additional parameters to be passed to the class
"""

def __init__(
Expand Down
3 changes: 3 additions & 0 deletions unifiedbooster/gbdt_classification.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ class GBDTClassifier(GBDT, ClassifierMixin):
seed: int
reproducibility seed
**kwargs: dict
additional parameters to be passed to the class
Examples:
```python
Expand Down
3 changes: 3 additions & 0 deletions unifiedbooster/gbdt_regression.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ class GBDTRegressor(GBDT, RegressorMixin):
seed: int
reproducibility seed
**kwargs: dict
additional parameters to be passed to the class
Examples:
```python
Expand Down

0 comments on commit 037fd12

Please sign in to comment.