Skip to content

Commit 25e1e15

Browse files
committed
Replaced gulp with webpack
1 parent 5524e29 commit 25e1e15

File tree

11 files changed

+2997
-147
lines changed

11 files changed

+2997
-147
lines changed

.settings/launch.json

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"version": "0.1.0",
3+
// List of configurations. Add new configurations or edit existing ones.
4+
// ONLY "node" and "mono" are supported, change "type" to switch.
5+
"configurations": [
6+
{
7+
// Name of configuration; appears in the launch configuration drop down menu.
8+
"name": "gulpfile.js",
9+
// Type of configuration. Possible values: "node", "mono".
10+
"type": "node",
11+
// Workspace relative or absolute path to the program.
12+
"program": "gulpfile.js",
13+
// Automatically stop program after launch.
14+
"stopOnEntry": true,
15+
// Command line arguments passed to the program.
16+
"args": [],
17+
// Workspace relative or absolute path to the working directory of the program being debugged. Default is the current workspace.
18+
"cwd": ".",
19+
// Workspace relative or absolute path to the runtime executable to be used. Default is the runtime executable on the PATH.
20+
"runtimeExecutable": null,
21+
// Environment variables passed to the program.
22+
"env": { }
23+
},
24+
{
25+
"name": "Attach",
26+
"type": "node",
27+
// TCP/IP address. Default is "localhost".
28+
"address": "localhost",
29+
// Port to attach to.
30+
"port": 5858
31+
}
32+
]
33+
}

LICENSE

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

3-
Copyright (c) 2014 Juan Cazala (juancazala.com)
3+
Copyright (c) 2016 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
@@ -9,14 +9,38 @@ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
99
copies of the Software, and to permit persons to whom the Software is
1010
furnished to do so, subject to the following conditions:
1111

12-
The above copyright notice and this permission notice shall be included in all
13-
copies or substantial portions of the Software.
12+
The above copyright notice and this permission notice shall be included in
13+
all copies or substantial portions of the Software.
1414

1515
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1616
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1717
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1818
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1919
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21-
SOFTWARE.
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
THE SOFTWARE
2222

23+
24+
25+
********************************************************************************************
26+
SYNAPTIC (v1.0.6)
27+
********************************************************************************************
28+
29+
Synaptic is a javascript neural network library for node.js and the browser, its generalized
30+
algorithm is architecture-free, so you can build and train basically any type of first order
31+
or even second order neural network architectures.
32+
33+
http://en.wikipedia.org/wiki/Recurrent_neural_network#Second_Order_Recurrent_Neural_Network
34+
35+
The library includes a few built-in architectures like multilayer perceptrons, multilayer
36+
long-short term memory networks (LSTM) or liquid state machines, and a trainer capable of
37+
training any given network, and includes built-in training tasks/tests like solving an XOR,
38+
passing a Distracted Sequence Recall test or an Embeded Reber Grammar test.
39+
40+
The algorithm implemented by this library has been taken from Derek D. Monner's paper:
41+
42+
43+
A generalized LSTM-like training algorithm for second-order recurrent neural networks
44+
http://www.overcomplete.net/papers/nn2012.pdf
45+
46+
There are references to the equations in that paper commented through the source code.

0 commit comments

Comments
 (0)