Skip to content

Commit

Permalink
Fix doc
Browse files Browse the repository at this point in the history
  • Loading branch information
mvdoc committed Jun 12, 2024
1 parent b716af2 commit f7b52f4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions himalaya/kernel_ridge/_kernelizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ class ColumnKernelizer(ColumnTransformer):
If True, computations will be performed on CPU, ignoring the
current backend. If False, use the current backend.
force_int_remainder_colsbool, default=True
force_int_remainder_cols : bool, default=True
Force the columns of the last entry of transformers_, which corresponds
to the “remainder” transformer, to always be stored as indices (int)
rather than column names (str).
Expand Down Expand Up @@ -313,7 +313,8 @@ class ColumnKernelizer(ColumnTransformer):
kernelizer = False

def __init__(self, transformers, remainder='drop', n_jobs=None,
transformer_weights=None, verbose=False, force_cpu=False, force_int_remainder_cols=True):
transformer_weights=None, verbose=False, force_cpu=False,
force_int_remainder_cols=True):
self.transformers = transformers
self.remainder = remainder
self.sparse_threshold = 0
Expand Down

0 comments on commit f7b52f4

Please sign in to comment.