deno.land / x / simplestatistic@v7.7.1 / test / perceptron.test.js

perceptron.test.js
نووسراو ببینە
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
/* eslint no-shadow: 0 */
const PerceptronModel = require("../").PerceptronModel;const test = require("tap").test;
test("perceptron", function (t) { t.test("initializes to zeros if label is zero", function (t) { const p = new PerceptronModel(); p.train([1, 2, 3], 0); t.same(p.weights, [0, 0, 0]); t.equal(p.bias, 0); t.end(); });
t.test("initializes to values if label is one", function (t) { const p = new PerceptronModel(); p.train([1, 2, 3], 1); t.same(p.weights, [1, 2, 3]); t.equal(p.bias, 1); t.end(); });
t.test("base case of zero prediction features", function (t) { const p = new PerceptronModel(); p.train([1, 2, 3], 1); t.same(p.predict([]), null); t.end(); });
t.test("train with invalid label", function (t) { const p = new PerceptronModel(); t.same(p.train([1, 2, 3], 0.5), null); t.end(); });
t.test("learns to separate one from two", function (t) { const p = new PerceptronModel(); for (let i = 0; i < 4; i++) { p.train([1], 0); p.train([2], 1); } t.equal(p.predict([1]), 0); t.equal(p.predict([2]), 1); t.end(); });
t.test("learns a diagonal boundary", function (t) { const p = new PerceptronModel(); for (let i = 0; i < 5; i++) { p.train([1, 1], 1); p.train([0, 1], 0); p.train([1, 0], 0); p.train([0, 0], 0); } t.equal(p.predict([0, 0]), 0); t.equal(p.predict([0, 1]), 0); t.equal(p.predict([1, 0]), 0); t.equal(p.predict([1, 1]), 1); t.end(); }); t.end();});
simplestatistic

Version Info

Tagged at
2 years ago