Description
I didn't get in your code but I would appreciate this feature (or another equivalent way to do it):
I don't know what is your algorithm for ensemble learning, but I guess there is some kind of bootstraping or cross-validation involved.
Maybe it's easier to explain it with an example:
Supposing you use a 5 folds CV in your ensemble learning algorithm, so you try to predict 1/5th of the observation each time. And score it by comparing to the true value.
Would it be possible to save this predictions in a .csv ? By merging the 5 * 1/5th above (*)
What I want to do with it:
I would like to run machineJS a first time on 100% of my training data. Then take the ouput (*) and run a second machineJS on it.
(Right now, what I do:
Run machineJS a first time on 50% of my training data, --predict on the remaining 50%. Then take this prediction and run machineJS on it.)