Skip to content

Commit

Permalink
v1.0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
Juan Cazala committed Mar 15, 2017
1 parent bc28e5d commit 76f322f
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 19 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,5 @@ demo.js
debug.html

.settings

npm-debug.log
4 changes: 2 additions & 2 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ bower install synaptic
Or you can simply use the CDN link, kindly provided by [CDNjs](https://cdnjs.com/)

```html
<script src="https://cdnjs.cloudflare.com/ajax/libs/synaptic/1.0.8/synaptic.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/synaptic/1.0.10/synaptic.js"></script>
```

###Usage
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "synaptic",
"version": "1.0.8",
"version": "1.0.10",
"homepage": "https://github.com/cazala/synaptic",
"authors": [
"Juan Cazala <[email protected]>"
Expand Down
5 changes: 3 additions & 2 deletions dist/synaptic.js
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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);
Expand Down
25 changes: 13 additions & 12 deletions dist/synaptic.min.js
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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;
}


/***/ },
Expand Down Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "synaptic",
"version": "1.0.9",
"version": "1.0.10",
"description": "architecture-free neural network library",
"main": "./src/synaptic",
"scripts": {
Expand Down

0 comments on commit 76f322f

Please sign in to comment.