Skip to content

Commit 45ce6ff

Browse files
authored
Merge pull request #251 from ChngYekKhai/new-branch
Fix typos in Readme
2 parents a26a51b + 84f16c5 commit 45ce6ff

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ However, there is no reason to use a neural network to figure out XOR. (-: So, h
9999

100100
## More Examples
101101
You can check out this fantastic screencast, which explains how to train a simple neural network using a real world dataset: [How to create a neural network in the browser using Brain.js](https://scrimba.com/c/c36zkcb).
102-
* [writing a children's book using a recurrent neural neural network](./examples/childrens-book.js)
102+
* [writing a children's book using a recurrent neural network](./examples/childrens-book.js)
103103
* [simple letter detection](./examples/which-letter-simple.js)
104104

105105
# Usage
@@ -232,7 +232,7 @@ net.train(data, {
232232

233233
The network will stop training whenever one of the two criteria is met: the training error has gone below the threshold (default `0.005`), or the max number of iterations (default `20000`) has been reached.
234234

235-
By default training will not let you know how its doing until the end, but set `log` to `true` to get periodic updates on the current training error of the network. The training error should decrease every time. The updates will be printed to console. If you set `log` to a function, this function will be called with the updates instead of printing to the console.
235+
By default training will not let you know how it's doing until the end, but set `log` to `true` to get periodic updates on the current training error of the network. The training error should decrease every time. The updates will be printed to console. If you set `log` to a function, this function will be called with the updates instead of printing to the console.
236236

237237
The learning rate is a parameter that influences how quickly the network trains. It's a number from `0` to `1`. If the learning rate is close to `0`, it will take longer to train. If the learning rate is closer to `1`, it will train faster, but training results may be constrained to a local minimum and perform badly on new data.(_Overfitting_) The default learning rate is `0.3`.
238238

0 commit comments

Comments
 (0)