Skip to content

Commit 76f322f

Browse files
author
Juan Cazala
committed
v1.0.10
1 parent bc28e5d commit 76f322f

File tree

7 files changed

+23
-19
lines changed

7 files changed

+23
-19
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,5 @@ demo.js
1818
debug.html
1919

2020
.settings
21+
22+
npm-debug.log

LICENSE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2016 Juan Cazala - juancazala.com
3+
Copyright (c) 2017 Juan Cazala - juancazala.com
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal
@@ -23,7 +23,7 @@ THE SOFTWARE
2323

2424

2525
********************************************************************************************
26-
SYNAPTIC (v1.0.8)
26+
SYNAPTIC (v1.0.10)
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
@@ -71,7 +71,7 @@ bower install synaptic
7171
Or you can simply use the CDN link, kindly provided by [CDNjs](https://cdnjs.com/)
7272

7373
```html
74-
<script src="https://cdnjs.cloudflare.com/ajax/libs/synaptic/1.0.8/synaptic.js"></script>
74+
<script src="https://cdnjs.cloudflare.com/ajax/libs/synaptic/1.0.10/synaptic.js"></script>
7575
```
7676

7777
###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.0.8",
3+
"version": "1.0.10",
44
"homepage": "https://github.com/cazala/synaptic",
55
"authors": [
66
"Juan Cazala <juancazala@gmail.com>"

dist/synaptic.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*!
22
* The MIT License (MIT)
33
*
4-
* Copyright (c) 2016 Juan Cazala - juancazala.com
4+
* Copyright (c) 2017 Juan Cazala - juancazala.com
55
*
66
* Permission is hereby granted, free of charge, to any person obtaining a copy
77
* of this software and associated documentation files (the "Software"), to deal
@@ -24,7 +24,7 @@
2424
*
2525
*
2626
* ********************************************************************************************
27-
* SYNAPTIC (v1.0.8)
27+
* SYNAPTIC (v1.0.10)
2828
* ********************************************************************************************
2929
*
3030
* Synaptic is a javascript neural network library for node.js and the browser, its generalized
@@ -1590,6 +1590,7 @@
15901590
neuron.squash == Neuron.squash.TANH ? "TANH" :
15911591
neuron.squash == Neuron.squash.IDENTITY ? "IDENTITY" :
15921592
neuron.squash == Neuron.squash.HLIM ? "HLIM" :
1593+
neuron.squash == Neuron.squash.RELU ? "RELU" :
15931594
null;
15941595

15951596
neurons.push(copy);

dist/synaptic.min.js

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*!
22
* The MIT License (MIT)
33
*
4-
* Copyright (c) 2016 Juan Cazala - juancazala.com
4+
* Copyright (c) 2017 Juan Cazala - juancazala.com
55
*
66
* Permission is hereby granted, free of charge, to any person obtaining a copy
77
* of this software and associated documentation files (the "Software"), to deal
@@ -24,7 +24,7 @@
2424
*
2525
*
2626
* ********************************************************************************************
27-
* SYNAPTIC (v1.0.8)
27+
* SYNAPTIC (v1.0.10)
2828
* ********************************************************************************************
2929
*
3030
* Synaptic is a javascript neural network library for node.js and the browser, its generalized
@@ -935,16 +935,16 @@
935935
/* 2 */
936936
/***/ function(module, exports) {
937937

938-
module.exports = function(module) {
939-
if(!module.webpackPolyfill) {
940-
module.deprecate = function() {};
941-
module.paths = [];
942-
// module.parent = undefined by default
943-
module.children = [];
944-
module.webpackPolyfill = 1;
945-
}
946-
return module;
947-
}
938+
module.exports = function(module) {
939+
if(!module.webpackPolyfill) {
940+
module.deprecate = function() {};
941+
module.paths = [];
942+
// module.parent = undefined by default
943+
module.children = [];
944+
module.webpackPolyfill = 1;
945+
}
946+
return module;
947+
}
948948

949949

950950
/***/ },
@@ -1590,6 +1590,7 @@
15901590
neuron.squash == Neuron.squash.TANH ? "TANH" :
15911591
neuron.squash == Neuron.squash.IDENTITY ? "IDENTITY" :
15921592
neuron.squash == Neuron.squash.HLIM ? "HLIM" :
1593+
neuron.squash == Neuron.squash.RELU ? "RELU" :
15931594
null;
15941595

15951596
neurons.push(copy);

package.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.0.9",
3+
"version": "1.0.10",
44
"description": "architecture-free neural network library",
55
"main": "./src/synaptic",
66
"scripts": {

0 commit comments

Comments
 (0)