Last active
August 29, 2015 14:13
-
-
Save jonathanmarvens/dcf1975b34ef0d596a93 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function BasicPerceptron(weights, bias) { | |
this.weights = weights; | |
this.threshold = bias * -1; | |
} | |
BasicPerceptron.prototype.run = function run(inputs) { | |
var sum = 0.0; | |
for (var a = 0; a < inputs.length; a++) { | |
sum += inputs[a] * this.weights[a]; | |
} | |
if (sum <= this.threshold) { | |
return 0; | |
} else { | |
return 1; | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Example: