machine_learning
machine_learning copied to clipboard
Machine learning library for Node.js
I've never forgotten you when you write this code as a high school student in Seoul. You got job offers from California and some prominent tech companies from Korea when...
Hi JoonKu, Thank you for creating a great project! But it's sad to see not much update to the project anymore =(. I am a maintainer of https://github.com/machinelearnjs/machinelearnjs, and I...
My data have one output only, when i set the output to one , a error found : throw new Error('Matrix mismatch.'); Is it the issue of hidden layer? And...
Used your library under NodeJS and running under strict mode. Encountered this error: `ReferenceError: mat_T is not defined` Added the var back and runs fine
I see the example use SVM to classify points - two-category classification problem May I know if the SVM algorithm could also handle classification for multi-category problem? Thanks.
I love the lib and THANK YOU VERY MUCHHHHHHHH! I like the visualization result in your website, and how can I also do this effect ?
Considering your `machine_learning/examples/DecisionTree.js`, whatever the input, teh output is always the same: ``` > console.log("Classify : ", dt.classify(['(direct)','USA','yes',5])); Classify : { None: 6, Basic: 5 } undefined > console.log("Classify :...
Is there a name for the cost function used in the hill-climbing example? I'm talking this: ```js var costf = function(vec) { var cost = 0; for(var i =0; i