machineJS
machineJS copied to clipboard
[UNMAINTAINED] Automated machine learning- just give it a data file! Check out the production-ready version of this project at ClimbsRocks/auto_ml
basically, make the makePrediction function usable within node, not just by passing in a new file
this should make our linear estimators more effective and frankly removes much of the burden of feature engineering from the engineer.
http://scikit-learn.org/stable/modules/generated/sklearn.ensemble.BaggingClassifier.html This may not work with gridsearchcv, so we might have to build in a little extra logic gate around that.
that will make it compatible with windows machines as well.
one of the parameters expects an int but is getting some number that is not an int. it's just a warning, but it's annoying. see if we can figure out...
seems they're re-organizing searchCV and feature selecting
right now we're only doing this at the very end for the ensembled predictions, but try doing this for the stage 0 predictions as well. the code's already written, it's...
since we're now using ensembling to pick which algos to use, we want as many as possible. so consider training the same total number of estimators, but making each individual...