UNPKG
neuralnetworkjs
Version:
latest (1.0.0)
1.0.0
A neural network library
github.com/tuttarealstep/neuralnetworkjs
tuttarealstep/neuralnetworkjs
neuralnetworkjs
/
src
/
brain
/
Synapse.js
16 lines
(15 loc)
•
254 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
class
Synapse
{
/** * *
@param
id *
@param
neuron *
@param
weight */
constructor
(id, neuron, weight) {
this
.id = id
this
.neuron = neuron;
this
.weight = weight; } } module.exports = Synapse