Skip to content

Instantly share code, notes, and snippets.

const initialWeights = [-0.2, 0.4];
const learningRate = 0.2;
class Perceptron {
constructor(weights) {
this.weights = weights;
}
predict(inputs) {
let sum = 0;