Skip to content

Should Incremental.partial_fit be concrete when handed numpy arrays? #234

@mrocklin

Description

@mrocklin

What should happen here?

sgd = skleran.SGDClassifier()
inc = Incremental(sgd)

X = np.array(...)
y = np.array(...)
inc.partial_fit(X, y)

Everything is concrete. Should we build things up lazily or should we execute directly using inc.estimator.partial_fit(X, y)?

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