Skip to content

Commit 2268193

Browse files
authored
Update README.md (#892)
fix broken links
1 parent b83f6da commit 2268193

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

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

190190
## More Examples
191191

192-
[Brain.js Examples Repo](https://github.com/BrainJS/brain.js-examples))
192+
[Brain.js Examples Repo](https://github.com/BrainJS/brain.js-examples)
193193

194194
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).
195195

@@ -412,7 +412,7 @@ Use `CrossValidate` with these classes:
412412
- `brain.LSTMTimeStep`
413413
- `brain.GRUTimeStep`
414414

415-
An example of using cross validate can be found in [examples/javascript/cross-validate.js](examples/javascript/cross-validate.js)
415+
An example of using cross validate can be found in [cross-validate.ts](https://github.com/BrainJS/brain.js-examples/blob/main/src/cross-validate.ts)
416416

417417
## Methods
418418

@@ -569,7 +569,7 @@ const likely = require('brain/likely');
569569
const key = likely(input, net);
570570
```
571571

572-
Likely example see: [simple letter detection](./examples/javascript/which-letter-simple.js)
572+
Likely example see: [simple letter detection](https://github.com/BrainJS/brain.js-examples/blob/main/src/which-letter-simple.ts)
573573

574574
### `toSVG`
575575

@@ -586,7 +586,7 @@ document.getElementById('result').innerHTML = brain.utilities.toSVG(
586586
);
587587
```
588588

589-
toSVG example see: [network rendering](./examples/javascript/rendering-svg.html)
589+
toSVG example see: [network rendering](https://github.com/BrainJS/brain.js-examples/blob/main/src/rendering-svg/index.html)
590590

591591
The user interface used:
592592
![screenshot1](https://user-images.githubusercontent.com/43925925/48969024-e526ed80-f000-11e8-85bd-e10967cfaee2.png)

0 commit comments

Comments
 (0)