10BC0 GradientBoostingRegressor always sets presort to auto · Issue #5857 · scikit-learn/scikit-learn · GitHub
[go: up one dir, main page]

Skip to content
GradientBoostingRegressor always sets presort to auto  #5857
@mcculloh

Description

@mcculloh

In the call to super inside __init__() GradientBoostingRegressor does not pass thru the presort variable to the superclass:

    super(GradientBoostingRegressor, self).__init__(
        loss=loss, learning_rate=learning_rate, n_estimators=n_estimators,
        ...
        max_leaf_nodes=max_leaf_nodes, warm_start=warm_start,
        presort='auto')

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions

      0