Skip to content

Commit fe80665

Browse files
author
Juan Cazala
committed
v1.1.4
1 parent 2358d73 commit fe80665

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ THE SOFTWARE
2323

2424

2525
********************************************************************************************
26-
SYNAPTIC (v1.1.3)
26+
SYNAPTIC (v1.1.4)
2727
********************************************************************************************
2828

2929
Synaptic is a javascript neural network library for node.js and the browser, its generalized

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ bower install synaptic
7272
Or you can simply use the CDN link, kindly provided by [CDNjs](https://cdnjs.com/)
7373

7474
```html
75-
<script src="https://cdnjs.cloudflare.com/ajax/libs/synaptic/1.1.3/synaptic.js"></script>
75+
<script src="https://cdnjs.cloudflare.com/ajax/libs/synaptic/1.1.4/synaptic.js"></script>
7676
```
7777

7878
### Usage

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "synaptic",
3-
"version": "1.1.3",
3+
"version": "1.1.4",
44
"homepage": "https://github.com/cazala/synaptic",
55
"authors": [
66
"Juan Cazala <juancazala@gmail.com>"

dist/synaptic.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
*
2525
*
2626
* ********************************************************************************************
27-
* SYNAPTIC (v1.1.3)
27+
* SYNAPTIC (v1.1.4)
2828
* ********************************************************************************************
2929
*
3030
* Synaptic is a javascript neural network library for node.js and the browser, its generalized
@@ -357,7 +357,7 @@ var Layer = function () {
357357
}, {
358358
key: 'add',
359359
value: function add(neuron) {
360-
this.neurons[neuron.ID] = neuron || new _Neuron2.default();
360+
neuron = neuron || new _Neuron2.default();
361361
this.list.push(neuron);
362362
this.size++;
363363
}

dist/synaptic.min.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
*
2525
*
2626
* ********************************************************************************************
27-
* SYNAPTIC (v1.1.3)
27+
* SYNAPTIC (v1.1.4)
2828
* ********************************************************************************************
2929
*
3030
* Synaptic is a javascript neural network library for node.js and the browser, its generalized
@@ -357,7 +357,7 @@ var Layer = function () {
357357
}, {
358358
key: 'add',
359359
value: function add(neuron) {
360-
this.neurons[neuron.ID] = neuron || new _Neuron2.default();
360+
neuron = neuron || new _Neuron2.default();
361361
this.list.push(neuron);
362362
this.size++;
363363
}

0 commit comments

Comments
 (0)