This provides a simple way to do model ensembling, just loading a list of saved models and averaging their predictions.
I also updated some docs a bit, so there are also some somewhat unrelated changes in this PR.
I'm planning on writing a simple test for this, that running an ensemble with 1 item in it returns the same result as score_dataset by itself, but the basic design is ready to be reviewed, I think.
306
This provides a simple way to do model ensembling, just loading a list of saved models and averaging their predictions.
I also updated some docs a bit, so there are also some somewhat unrelated changes in this PR.
I'm planning on writing a simple test for this, that running an ensemble with 1 item in it returns the same result as
score_dataset
by itself, but the basic design is ready to be reviewed, I think.