-
Notifications
You must be signed in to change notification settings - Fork 3
/
stream-example.ts
51 lines (43 loc) · 1.26 KB
/
stream-example.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import { NeuralNetwork } from 'brain.js';
import { TrainStream } from 'train-stream';
const net = new NeuralNetwork();
const xor = [
{ input: [0, 0], output: [0] },
{ input: [0, 1], output: [1] },
{ input: [1, 0], output: [1] },
{ input: [1, 1], output: [0] },
];
const trainingStream = new TrainStream({
neuralNetwork: net,
/**
* Write training data to the stream. Called on each training iteration.
*/
floodCallback: function () {
readInputs(xor);
},
/**
* Called when the network is done training.
*/
doneTrainingCallback: function (stats) {
console.log(
`trained in ${stats.iterations} iterations with error: ${stats.error}`
);
const result01 = net.run([0, 1]);
const result00 = net.run([0, 0]);
const result11 = net.run([1, 1]);
const result10 = net.run([1, 0]);
console.log('0 XOR 1: ', result01); // 0.987
console.log('0 XOR 0: ', result00); // 0.058
console.log('1 XOR 1: ', result11); // 0.087
console.log('1 XOR 0: ', result10); // 0.934
},
});
// kick it off
readInputs(xor);
function readInputs(data: string | any[]) {
for (let i = 0; i < data.length; i++) {
trainingStream.write(data[i]);
}
// let it know we've reached the end of the inputs
trainingStream.endInputs();
}