UNPKG

@alenaksu/neatjs

Version:

NEAT (Neuroevolution of Augmenting Topologies) implementation in JavaScript

11 lines 240 B
export default class Neuron { constructor(type, id) { this.value = 0; this.bias = 0; this.in = []; this.out = []; this.type = type; this.id = id; } } //# sourceMappingURL=Neuron.js.map