-
-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
predict on test set rows #706
Comments
|
There is a memory inefficiency with the suggested approach: Let's say we have a task with data of the form
Lets say we apply two preprocessing operations to In the approach we discussed, we first
The wasteful thing here is that we rbind column The virtual backend that would result of applying two preprocessing operations on
|
In addition to that, retrieving the |
Some possible solutions:
|
Now solved by #770 |
go through each pipeop and let it predict directly, since some pipeops need the predicted set
The text was updated successfully, but these errors were encountered: