(index)
| 99 | * @param {index} Index of this Layer in the Network. |
| 100 | */ |
| 101 | var Layer = function (index) { |
| 102 | this.id = index || 0; |
| 103 | this.neurons = []; |
| 104 | } |
| 105 | |
| 106 | /** |
| 107 | * Populate the Layer with a set of randomly weighted Neurons. |
nothing calls this directly
no outgoing calls
no test coverage detected