ClimbsRocks / machineJS

[UNMAINTAINED] Automated machine learning- just give it a data file! Check out the production-ready version of this project at ClimbsRocks/auto_ml
https://github.com/ClimbsRocks/auto_ml
408 stars 64 forks source link

for the validationRound, write the score from the hyperparameter search, not the final training run #170

Closed ClimbsRocks closed 8 years ago

ClimbsRocks commented 8 years ago

currently, we're sending both scores back from training.py

the issues comes in what we send into makePredictions.py, where we only send in the trainingScore, not the searchScore.

TODO: send the searchScore into makePredictions.py. if it's not the validationRound, save the searchScore as teh first thing in the scores row

ClimbsRocks commented 8 years ago

finished