-
Notifications
You must be signed in to change notification settings - Fork 5
/
which-letter-simple.ts
66 lines (60 loc) · 1.07 KB
/
which-letter-simple.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
import { NeuralNetwork, likely } from 'brain.js';
const a = character(
'.#####.' +
'#.....#' +
'#.....#' +
'#######' +
'#.....#' +
'#.....#' +
'#.....#'
);
const b = character(
'######.' +
'#.....#' +
'#.....#' +
'######.' +
'#.....#' +
'#.....#' +
'######.'
);
const c = character(
'#######' +
'#......' +
'#......' +
'#......' +
'#......' +
'#......' +
'#######'
);
/**
* Learn the letters A through C.
*/
const net = new NeuralNetwork();
net.train([
{ input: a, output: { a: 1 } },
{ input: b, output: { b: 1 } },
{ input: c, output: { c: 1 } },
]);
/**
* Predict the letter A, even with a pixel off.
*/
const result = likely(
character(
'.#####.' +
'#.....#' +
'#.....#' +
'###.###' +
'#.....#' +
'#.....#' +
'#.....#'
),
net
);
console.log(result); // 'a'
function character(string: string): number[] {
return string.trim().split('').map(integer);
}
function integer(character: string): number {
if (character === '#') return 1;
return 0;
}