Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ more info on config [here](https://github.com/BrainJS/brain.js/blob/develop/src/
```javascript
// provide optional config object (or undefined). Defaults shown.
const config = {
binaryThresh: 0.5, // ¯\_(ツ)_/¯
binaryThresh: 0.5,
hiddenLayers: [3], // array of ints for the sizes of the hidden layers in the network
activation: 'sigmoid' // supported activation types: ['sigmoid', 'relu', 'leaky-relu', 'tanh']
};
Expand All @@ -76,7 +76,7 @@ more info on config [here](https://github.com/BrainJS/brain.js/blob/develop/src/
const config = {
inputSize: 20,
inputRange: 20,
hiddenSizes: [20,20],
hiddenLayers: [20,20],
outputSize: 20,
learningRate: 0.01,
decayRate: 0.999,
Expand Down
30,191 changes: 15,196 additions & 14,995 deletions browser.js

Large diffs are not rendered by default.

160 changes: 79 additions & 81 deletions browser.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/cross-validate.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/cross-validate.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/neural-network-gpu.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/neural-network-gpu.js.map

Large diffs are not rendered by default.

29 changes: 19 additions & 10 deletions dist/neural-network.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/neural-network.js.map

Large diffs are not rendered by default.

7 changes: 4 additions & 3 deletions dist/recurrent/matrix/equation.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/recurrent/matrix/equation.js.map

Large diffs are not rendered by default.

150 changes: 131 additions & 19 deletions dist/recurrent/rnn-time-step.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading