ContinuumIO / elm

Phase I & part of Phase II of NASA SBIR - Parallel Machine Learning on Satellite Data
http://ensemble-learning-models.readthedocs.io
43 stars 27 forks source link

change the Pipeline.ensemble attribute to be a simple list not list of tuples #108

Closed PeterDSteinberg closed 6 years ago

PeterDSteinberg commented 7 years ago

It has started to annoy me that the Pipeline.ensemble attribute (the fitted models from fit_ea or fit_ensemble is a list of tuples: (tag, model) rather than just a list of models where the tag information is an attribute of the model. Move the tag to a model attribute and make it a simple list of models (Pipeline instances) rather than (tag, model) tuples.

PeterDSteinberg commented 6 years ago

Fixed by #192