Skip to content

Instantly share code, notes, and snippets.

@abhisheksoni27
Last active June 13, 2017 10:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save abhisheksoni27/df1b4544747d8826ddfe3f97b3cfda4f to your computer and use it in GitHub Desktop.
Save abhisheksoni27/df1b4544747d8826ddfe3f97b3cfda4f to your computer and use it in GitHub Desktop.
function predictOutput() {
rl.question('Enter input X for prediction (Press CTRL+C to exit) : ', (answer) => {
console.log(`At X = ${answer}, y = ${regressionModel.predict(parseFloat(answer))}`);
predictOutput();
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment