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
Currently, the run loop runs all model-validation combinations and stores the result in memory and once all complete it then writes all the result to file. If a model-validation combination breaks, then whole loop breaks, and all the prior model-validation combination results are lost, resulting in wasted compute + waiting time for those model-validation combinations.
We could try to implement a solution to this.
The text was updated successfully, but these errors were encountered:
Another option would be to incrementally add lines to csvs, rather than building all the results and then saving? This could also remove the pandas dependency if that is not used elsewhere.
Proposed solution to issue datavaluepeople#31
Save results immediately for each model-validation combination. If the code breaks before the end of the loops, the results can be recovered from the results file rather than re-computed.
Currently, the
run
loop runs all model-validation combinations and stores the result in memory and once all complete it then writes all the result to file. If a model-validation combination breaks, then whole loop breaks, and all the prior model-validation combination results are lost, resulting in wasted compute + waiting time for those model-validation combinations.We could try to implement a solution to this.
The text was updated successfully, but these errors were encountered: