You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please describe the use case that requires this feature.
Currently, the CrossValidator keeps the results of the cross-validation, including the full result table in memory and writes it in finish method of the tools.
We should write the results immediately in the cross validation loop using write_table(..., append=True) to avoid keeping this information in memory unnecessarily.
Describe the solution you'd like
Write cross validation results out immediately after each step, not in finish.
The text was updated successfully, but these errors were encountered:
Please describe the use case that requires this feature.
Currently, the
CrossValidator
keeps the results of the cross-validation, including the full result table in memory and writes it infinish
method of the tools.We should write the results immediately in the cross validation loop using
write_table(..., append=True)
to avoid keeping this information in memory unnecessarily.Describe the solution you'd like
Write cross validation results out immediately after each step, not in
finish
.The text was updated successfully, but these errors were encountered: