Skip to content

Commit a0e9df3

Browse files
fix: Build
1 parent 845d7bd commit a0e9df3

10 files changed

Lines changed: 148 additions & 171 deletions

File tree

β€ŽREADME.mdβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ more info on config [here](https://github.com/BrainJS/brain.js/blob/develop/src/
5353
```javascript
5454
// provide optional config object (or undefined). Defaults shown.
5555
const config = {
56-
binaryThresh: 0.5, // Β―\_(ツ)_/Β―
56+
binaryThresh: 0.5,
5757
hiddenLayers: [3], // array of ints for the sizes of the hidden layers in the network
5858
activation: 'sigmoid' // supported activation types: ['sigmoid', 'relu', 'leaky-relu', 'tanh']
5959
};

β€Žbrowser.jsβ€Ž

Lines changed: 69 additions & 81 deletions
Large diffs are not rendered by default.

β€Žbrowser.min.jsβ€Ž

Lines changed: 72 additions & 78 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Ždist/neural-network.jsβ€Ž

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Ždist/neural-network.js.mapβ€Ž

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Ždist/recurrent/rnn-time-step.jsβ€Ž

Lines changed: 1 addition & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Ždist/recurrent/rnn-time-step.js.mapβ€Ž

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Ždist/recurrent/rnn.jsβ€Ž

Lines changed: 0 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Ždist/recurrent/rnn.js.mapβ€Ž

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

β€Žsrc/neural-network.jsβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export default class NeuralNetwork {
3232

3333
static get defaults() {
3434
return {
35-
binaryThresh: 0.5, // Β―\_(ツ)_/Β―
35+
binaryThresh: 0.5,
3636
hiddenLayers: [3], // array of ints for the sizes of the hidden layers in the network
3737
activation: 'sigmoid' // Supported activation types ['sigmoid', 'relu', 'leaky-relu', 'tanh']
3838
};

0 commit comments

Comments
Β (0)