Skip to content

Commit

Permalink
allows the user to pass in "--ensemble true" to skip right to the ens…
Browse files Browse the repository at this point in the history
…emble round
  • Loading branch information
ClimbsRocks committed Dec 14, 2015
1 parent d6869b3 commit 0b2a656
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion machineJS.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
argv.ensemblerArgs.validationRound = false;
}

if (argv.devEnsemble) {
if (argv.devEnsemble || argv.ensemble) {
ensembler.createEnsemble( argv.ensemblerArgs );
} else if( argv.makePredictions ) {
controllerPython.makeAllPredictions( argv.makePredictions );
Expand Down

0 comments on commit 0b2a656

Please sign in to comment.