diff --git a/.gitignore b/.gitignore index 1c378fe..644420d 100644 --- a/.gitignore +++ b/.gitignore @@ -18,3 +18,5 @@ demo.js debug.html .settings + +npm-debug.log diff --git a/LICENSE b/LICENSE index 04b508a..dde25d0 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2016 Juan Cazala - juancazala.com +Copyright (c) 2017 Juan Cazala - juancazala.com Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -23,7 +23,7 @@ THE SOFTWARE ******************************************************************************************** - SYNAPTIC (v1.0.8) + SYNAPTIC (v1.0.10) ******************************************************************************************** Synaptic is a javascript neural network library for node.js and the browser, its generalized diff --git a/README.md b/README.md index 4ff085c..afe67b9 100755 --- a/README.md +++ b/README.md @@ -71,7 +71,7 @@ bower install synaptic Or you can simply use the CDN link, kindly provided by [CDNjs](https://cdnjs.com/) ```html - + ``` ###Usage diff --git a/bower.json b/bower.json index 2f4c6a6..9a69e19 100644 --- a/bower.json +++ b/bower.json @@ -1,6 +1,6 @@ { "name": "synaptic", - "version": "1.0.8", + "version": "1.0.10", "homepage": "https://github.com/cazala/synaptic", "authors": [ "Juan Cazala " diff --git a/dist/synaptic.js b/dist/synaptic.js index e3ab5b7..99854a2 100644 --- a/dist/synaptic.js +++ b/dist/synaptic.js @@ -1,7 +1,7 @@ /*! * The MIT License (MIT) * - * Copyright (c) 2016 Juan Cazala - juancazala.com + * Copyright (c) 2017 Juan Cazala - juancazala.com * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -24,7 +24,7 @@ * * * ******************************************************************************************** - * SYNAPTIC (v1.0.8) + * SYNAPTIC (v1.0.10) * ******************************************************************************************** * * Synaptic is a javascript neural network library for node.js and the browser, its generalized @@ -1590,6 +1590,7 @@ neuron.squash == Neuron.squash.TANH ? "TANH" : neuron.squash == Neuron.squash.IDENTITY ? "IDENTITY" : neuron.squash == Neuron.squash.HLIM ? "HLIM" : + neuron.squash == Neuron.squash.RELU ? "RELU" : null; neurons.push(copy); diff --git a/dist/synaptic.min.js b/dist/synaptic.min.js index b2bb361..99854a2 100644 --- a/dist/synaptic.min.js +++ b/dist/synaptic.min.js @@ -1,7 +1,7 @@ /*! * The MIT License (MIT) * - * Copyright (c) 2016 Juan Cazala - juancazala.com + * Copyright (c) 2017 Juan Cazala - juancazala.com * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal @@ -24,7 +24,7 @@ * * * ******************************************************************************************** - * SYNAPTIC (v1.0.8) + * SYNAPTIC (v1.0.10) * ******************************************************************************************** * * Synaptic is a javascript neural network library for node.js and the browser, its generalized @@ -935,16 +935,16 @@ /* 2 */ /***/ function(module, exports) { - module.exports = function(module) { - if(!module.webpackPolyfill) { - module.deprecate = function() {}; - module.paths = []; - // module.parent = undefined by default - module.children = []; - module.webpackPolyfill = 1; - } - return module; - } + module.exports = function(module) { + if(!module.webpackPolyfill) { + module.deprecate = function() {}; + module.paths = []; + // module.parent = undefined by default + module.children = []; + module.webpackPolyfill = 1; + } + return module; + } /***/ }, @@ -1590,6 +1590,7 @@ neuron.squash == Neuron.squash.TANH ? "TANH" : neuron.squash == Neuron.squash.IDENTITY ? "IDENTITY" : neuron.squash == Neuron.squash.HLIM ? "HLIM" : + neuron.squash == Neuron.squash.RELU ? "RELU" : null; neurons.push(copy); diff --git a/package.json b/package.json index aba9b8e..e71152d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "synaptic", - "version": "1.0.9", + "version": "1.0.10", "description": "architecture-free neural network library", "main": "./src/synaptic", "scripts": {