File tree Expand file tree Collapse file tree 7 files changed +23
-19
lines changed
Expand file tree Collapse file tree 7 files changed +23
-19
lines changed Original file line number Diff line number Diff line change @@ -18,3 +18,5 @@ demo.js
1818debug.html
1919
2020.settings
21+
22+ npm-debug.log
Original file line number Diff line number Diff line change 11The MIT License (MIT)
22
3- Copyright (c) 2016 Juan Cazala - juancazala.com
3+ Copyright (c) 2017 Juan Cazala - juancazala.com
44
55Permission is hereby granted, free of charge, to any person obtaining a copy
66of 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
2929Synaptic is a javascript neural network library for node.js and the browser, its generalized
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ bower install synaptic
7171Or 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
Original file line number Diff line number Diff line change 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>"
Original file line number Diff line number Diff line change 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
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
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 ) ;
Original file line number Diff line number Diff line change 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
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
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/***/ } ,
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 ) ;
Original file line number Diff line number Diff line change 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" : {
You can’t perform that action at this time.
0 commit comments