File tree Expand file tree Collapse file tree 3 files changed +8
-0
lines changed
ensemble/_hist_gradient_boosting Expand file tree Collapse file tree 3 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ from numpy.random import RandomState
7
7
from ..._typing import ArrayLike , Int , MatrixLike
8
8
from ...base import BaseEstimator , TransformerMixin
9
9
10
+ # Author: Nicolas Hug
11
+
10
12
class _BinMapper (TransformerMixin , BaseEstimator ):
11
13
missing_values_bin_idx_ : uint8 = ...
12
14
is_categorical_ : ndarray = ...
Original file line number Diff line number Diff line change @@ -2,6 +2,8 @@ from numpy import ndarray
2
2
3
3
from ..._typing import ArrayLike , Int , MatrixLike
4
4
5
+ # Author: Nicolas Hug
6
+
5
7
class TreePredictor :
6
8
def __init__ (
7
9
self ,
Original file line number Diff line number Diff line change @@ -8,6 +8,10 @@ from scipy.sparse import spmatrix
8
8
from .._typing import ArrayLike , MatrixLike
9
9
from ..base import BaseEstimator , TransformerMixin
10
10
11
+ # Authors: Lars Buitinck
12
+ # Dan Blanchard <dblanchard@ets.org>
13
+ # License: BSD 3 clause
14
+
11
15
class DictVectorizer (TransformerMixin , BaseEstimator ):
12
16
feature_names_ : list = ...
13
17
vocabulary_ : dict = ...
You can’t perform that action at this time.
0 commit comments