-
Notifications
You must be signed in to change notification settings - Fork 2k
/
Copy pathactivations_test.ts
463 lines (443 loc) · 15.6 KB
/
activations_test.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
/**
* @license
* Copyright 2018 Google LLC
*
* Use of this source code is governed by an MIT-style
* license that can be found in the LICENSE file or at
* https://opensource.org/licenses/MIT.
* =============================================================================
*/
/**
* Unit tests for activations.ts.
*/
import {scalar, tensor1d, tensor2d, tensor3d} from '@tensorflow/tfjs-core';
import {Elu, HardSigmoid, Linear, LogSoftmax, Relu, Relu6, Selu, Sigmoid, Softmax, Softplus, Softsign, Tanh, Swish, Mish, Gelu, GeluNew} from './activations';
import {describeMathCPUAndGPU, expectNoLeakedTensors, expectTensorsClose} from './utils/test_utils';
describeMathCPUAndGPU('linear activation', () => {
const initVals = new Float32Array([-1, 2, 0, 4, -5, 6]);
const expectedVals = new Float32Array([-1, 2, 0, 4, -5, 6]);
const linear = new Linear().apply;
it('1D', () => {
const initX = tensor1d(initVals);
expectTensorsClose(linear(initX), tensor1d(expectedVals));
});
it('2D', () => {
const initX = tensor2d(initVals, [2, 3]);
expectTensorsClose(linear(initX), tensor2d(expectedVals, [2, 3]));
});
it('3D', () => {
const initX = tensor3d(initVals, [1, 2, 3]);
expectTensorsClose(linear(initX), tensor3d(expectedVals, [1, 2, 3]));
});
it('Does not leak', () => {
const initX = tensor1d(initVals);
expectNoLeakedTensors(() => linear(initX), 0);
});
});
describeMathCPUAndGPU('elu activation', () => {
const initVals = [-1, 2, 0, 4, -5, 6];
const expectedVals = initVals.map(x => x < 0 ? Math.exp(x) - 1 : x);
const elu = new Elu().apply;
it('1D', () => {
const initX = tensor1d(initVals);
expectTensorsClose(elu(initX), tensor1d(expectedVals));
});
it('2D', () => {
const initX = tensor2d(initVals, [2, 3]);
expectTensorsClose(elu(initX), tensor2d(expectedVals, [2, 3]));
});
it('3D', () => {
const initX = tensor3d(initVals, [1, 2, 3]);
expectTensorsClose(elu(initX), tensor3d(expectedVals, [1, 2, 3]));
});
it('Does not leak', () => {
const initX = tensor1d(initVals);
expectNoLeakedTensors(() => elu(initX), 1);
});
});
describeMathCPUAndGPU('selu activation', () => {
const initVals = [-1, 2, 0, 4, -5, 6];
const alpha = 1.6732632423543772848170429916717;
const scale = 1.0507009873554804934193349852946;
const expectedVals =
initVals.map(x => scale * (x < 0 ? (alpha * (Math.exp(x) - 1)) : x));
const selu = new Selu().apply;
it('1D', () => {
const initX = tensor1d(initVals);
expectTensorsClose(selu(initX), tensor1d(expectedVals));
});
it('2D', () => {
const initX = tensor2d(initVals, [2, 3]);
expectTensorsClose(selu(initX), tensor2d(expectedVals, [2, 3]));
});
it('3D', () => {
const initX = tensor3d(initVals, [1, 2, 3]);
expectTensorsClose(selu(initX), tensor3d(expectedVals, [1, 2, 3]));
});
it('Does not leak', () => {
const initX = tensor1d(initVals);
expectNoLeakedTensors(() => selu(initX), 1);
});
});
describeMathCPUAndGPU('relu activation', () => {
const initVals = new Float32Array([-1, 2, 0, 4, -5, 6]);
const expectedVals = new Float32Array([0, 2, 0, 4, 0, 6]);
const relu = new Relu().apply;
it('1D', () => {
const initX = tensor1d(initVals);
expectTensorsClose(relu(initX), tensor1d(expectedVals));
});
it('2D', () => {
const initX = tensor2d(initVals, [2, 3]);
expectTensorsClose(relu(initX), tensor2d(expectedVals, [2, 3]));
});
it('3D', () => {
const initX = tensor3d(initVals, [1, 2, 3]);
expectTensorsClose(relu(initX), tensor3d(expectedVals, [1, 2, 3]));
});
it('Does not leak', () => {
const initX = tensor1d(initVals);
expectNoLeakedTensors(() => relu(initX), 1);
});
});
describeMathCPUAndGPU('relu6 activation', () => {
const initVals = new Float32Array([-10, -5, 0, 1, 5, 15]);
const expectedVals = new Float32Array([0, 0, 0, 1, 5, 6]);
const relu6 = new Relu6().apply;
it('1D', () => {
const initX = tensor1d(initVals);
expectTensorsClose(relu6(initX), tensor1d(expectedVals));
});
it('2D', () => {
const initX = tensor2d(initVals, [2, 3]);
expectTensorsClose(relu6(initX), tensor2d(expectedVals, [2, 3]));
});
it('3D', () => {
const initX = tensor3d(initVals, [1, 2, 3]);
expectTensorsClose(relu6(initX), tensor3d(expectedVals, [1, 2, 3]));
});
it('Does not leak', () => {
const initX = tensor1d(initVals);
expectNoLeakedTensors(() => relu6(initX), 1);
});
});
describeMathCPUAndGPU('sigmoid activation', () => {
const sigmoid = new Sigmoid().apply;
const initVals = [-1, 2, 0, 4, -5, 6];
it('Scalar', () => {
expectTensorsClose(sigmoid(scalar(0)), scalar(0.5));
});
it('3D', () => {
const expectedVals = initVals.map(v => 1 / (1 + Math.exp(-v)));
const initX = tensor3d(initVals, [1, 2, 3]);
expectTensorsClose(sigmoid(initX), tensor3d(expectedVals, [1, 2, 3]));
});
it('Does not leak', () => {
const initX = tensor1d(initVals);
expectNoLeakedTensors(() => sigmoid(initX), 1);
});
});
describeMathCPUAndGPU('hardSigmoid activation', () => {
const hardSigmoid = new HardSigmoid().apply;
const initVals = [-1, 2, 0, 4, -5, 6];
it('Scalar', () => {
expectTensorsClose(hardSigmoid(scalar(0)), scalar(0.5));
});
it('3D', () => {
const expectedVals = initVals.map(v => {
const y = 0.2 * v + 0.5;
if (y > 1) {
return 1;
} else if (y < 0) {
return 0;
} else {
return y;
}
});
const initX = tensor3d(initVals, [1, 2, 3]);
expectTensorsClose(hardSigmoid(initX), tensor3d(expectedVals, [1, 2, 3]));
});
it('Does not leak', () => {
const initX = tensor1d(initVals);
expectNoLeakedTensors(() => hardSigmoid(initX), 1);
});
});
describeMathCPUAndGPU('softplus activation', () => {
const softplus = new Softplus().apply;
const initVals = [-1, 2, 0, 4, -5, 6];
it('Scalar', () => {
expectTensorsClose(softplus(scalar(0)), scalar(Math.log(2)));
});
it('3D', () => {
const expectedVals = initVals.map(v => Math.log(Math.exp(v) + 1));
const initX = tensor3d(initVals, [1, 2, 3]);
expectTensorsClose(softplus(initX), tensor3d(expectedVals, [1, 2, 3]));
});
it('Does not leak', () => {
const initX = tensor1d(initVals);
expectNoLeakedTensors(() => softplus(initX), 1);
});
});
describeMathCPUAndGPU('softsign activation', () => {
const softsign = new Softsign().apply;
const initVals = [-1, 2, 0, 4, -5, 6];
it('Scalar', () => {
expectTensorsClose(softsign(scalar(0)), scalar(0));
});
it('3D', () => {
const expectedVals = initVals.map(v => v / (Math.abs(v) + 1));
const initX = tensor3d(initVals, [1, 2, 3]);
expectTensorsClose(softsign(initX), tensor3d(expectedVals, [1, 2, 3]));
});
it('Does not leak', () => {
const initX = tensor1d(initVals);
expectNoLeakedTensors(() => softsign(initX), 1);
});
});
describeMathCPUAndGPU('tanh activation', () => {
const tanh = new Tanh().apply;
const initVals = [-1, 2, 0, 4, -5, 6];
const expectedVals = initVals.map(x => Math.tanh(x));
it('1D', () => {
const initX = tensor1d(initVals);
expectTensorsClose(tanh(initX), tensor1d(expectedVals));
});
it('2D', () => {
const initX = tensor2d(initVals, [2, 3]);
expectTensorsClose(tanh(initX), tensor2d(expectedVals, [2, 3]));
});
it('3D', () => {
const initX = tensor3d(initVals, [1, 2, 3]);
expectTensorsClose(tanh(initX), tensor3d(expectedVals, [1, 2, 3]));
});
it('Does not leak', () => {
const initX = tensor1d(initVals);
expectNoLeakedTensors(() => tanh(initX), 1);
});
});
describeMathCPUAndGPU('softmax activation', () => {
const softmax = new Softmax().apply;
// Setup: Array with initial values.
// Execute: Softmax on the last dimension.
// Expect: Output array matches size and approximate expected values.
it('1D', () => {
const initVals = new Float32Array([0, 1, 3, 9]);
const expectedVals = new Float32Array([0.000, 0.000, 0.002, 0.997]);
const initX = tensor1d(initVals);
expectTensorsClose(softmax(initX), tensor1d(expectedVals));
});
it('1D all equal', () => {
const initVals = new Float32Array([-1, -1, -1, -1]);
const expectedVals = new Float32Array([0.25, 0.25, 0.25, 0.25]);
const initX = tensor1d(initVals);
expectTensorsClose(softmax(initX), tensor1d(expectedVals));
});
it('2D', () => {
const initVals = new Float32Array([0, 1, 3, 9, 0, 1, 3, 9]);
const expectedVals = new Float32Array(
[0.000, 0.000, 0.002, 0.997, 0.000, 0.000, 0.002, 0.997]);
const initX = tensor2d(initVals, [2, 4]);
expectTensorsClose(softmax(initX), tensor2d(expectedVals, [2, 4]));
});
it('3D', () => {
const initVals = new Float32Array([0, 1, 3, 9, 0, 1, 3, 9]);
const expectedVals = new Float32Array(
[0.000, 0.000, 0.002, 0.997, 0.000, 0.000, 0.002, 0.997]);
const initX = tensor3d(initVals, [1, 2, 4]);
expectTensorsClose(softmax(initX), tensor3d(expectedVals, [1, 2, 4]));
});
it('Does not leak', () => {
const initVals = new Float32Array([0, 1, 3, 9]);
const initX = tensor1d(initVals);
expectNoLeakedTensors(() => softmax(initX), 1);
});
});
describeMathCPUAndGPU('logsoftmax activation', () => {
const logsoftmax = new LogSoftmax().apply;
// Setup: Array with initial values.
// Execute: logSoftmax on the last dimension.
// Expect: Output array matches size and approximate expected values.
it('1D', () => {
const initX = tensor1d([0, 1, 3, 9]);
const expectedVals = tensor1d([-9.003, -8.003, -6.003, -0.003]);
expectTensorsClose(logsoftmax(initX), expectedVals);
});
it('1D all equal', () => {
const initX = tensor1d([-1, -1, -1, -1]);
const expectedVals = tensor1d([-1.386, -1.386, -1.386, -1.386]);
expectTensorsClose(logsoftmax(initX), expectedVals);
});
it('2D', () => {
const initX = tensor2d([[0, 1, 3, 9], [0, 1, 3, 9]]);
const expectedVals = tensor2d(
[[-9.003, -8.003, -6.003, -0.003], [-9.003, -8.003, -6.003, -0.003]]);
expectTensorsClose(logsoftmax(initX), expectedVals);
});
it('3D', () => {
const initX = tensor3d([[[0, 1, 3, 9], [0, 1, 3, 9]]]);
const expectedVals = tensor3d(
[[[-9.003, -8.003, -6.003, -0.003], [-9.003, -8.003, -6.003, -0.003]]]);
expectTensorsClose(logsoftmax(initX), expectedVals);
});
it('Does not leak', () => {
const initX = tensor1d([0, 1, 3, 9]);
expectNoLeakedTensors(() => logsoftmax(initX), 1);
});
});
describeMathCPUAndGPU('swish activation', () => {
const swish = new Swish().apply;
// Setup: Array with initial values.
// Execute: Swish on the last dimension.
// Expect: Output array matches size and approximate expected values.
it('1D', () => {
const initX = tensor1d([0, 1, 3, 9]);
const expectedVals = tensor1d([0, .731, 2.857, 8.998]);
expectTensorsClose(swish(initX), expectedVals);
});
it('1D all equal', () => {
const initX = tensor1d([-1, -1, -1, -1]);
const expectedVals = tensor1d([-.268, -.268, -.268, -.268]);
expectTensorsClose(swish(initX), expectedVals);
});
it('2D', () => {
const initX = tensor2d([[0, 1, 3, 9], [0, 1, 3, 9]]);
const expectedVals = tensor2d(
[[0, .731, 2.857, 8.998], [0, .731, 2.857, 8.998]]);
expectTensorsClose(swish(initX), expectedVals);
});
it('3D', () => {
const initX = tensor3d([[[0, 1, 3, 9], [0, 1, 3, 9]]]);
const expectedVals = tensor3d(
[[[0, .731, 2.857, 8.998], [0, .731, 2.857, 8.998]]]);
expectTensorsClose(swish(initX), expectedVals);
});
it('Does not leak', () => {
const initX = tensor1d([0, 1, 3, 9]);
expectNoLeakedTensors(() => swish(initX), 1);
});
});
describeMathCPUAndGPU('mish activation', () => {
const mish = new Mish().apply;
// Setup: Array with initial values.
// Execute: Mish on the last dimension.
// Expect: Output array matches size and approximate expected values.
it('1D', () => {
const initX = tensor1d([0, 1, 3, 9]);
const expectedVals = tensor1d([0., .865, 2.987, 9.]);
expectTensorsClose(mish(initX), expectedVals);
});
it('1D all equal', () => {
const initX = tensor1d([-1, -1, -1, -1]);
const expectedVals = tensor1d([-0.303, -0.303, -0.303, -0.303]);
expectTensorsClose(mish(initX), expectedVals);
});
it('2D', () => {
const initX = tensor2d([[0, 1, 3, 9], [0, 1, 3, 9]]);
const expectedVals = tensor2d(
[[0., .865, 2.987, 9.], [0., .865, 2.987, 9.]]);
expectTensorsClose(mish(initX), expectedVals);
});
it('3D', () => {
const initX = tensor3d([[[0, 1, 3, 9], [0, 1, 3, 9]]]);
const expectedVals = tensor3d(
[[[0., .865, 2.987, 9.], [0., .865, 2.987, 9.]]]);
expectTensorsClose(mish(initX), expectedVals);
});
it('Does not leak', () => {
const initX = tensor1d([0, 1, 3, 9]);
expectNoLeakedTensors(() => mish(initX), 1);
});
});
describeMathCPUAndGPU('gelu activation', () => {
const gelu = new Gelu().apply;
// Setup: Array with initial values.
// Execute: Gelu on the last dimension.
// Expect: Output array matches size and approximate expected values.
it('1D', () => {
const initX = tensor1d([0, 1, 3, 9]);
const expectedVals = tensor1d([
0,
0.8413447141647339,
2.995950222015381, 9
]);
expectTensorsClose(gelu(initX), expectedVals);
});
it('1D all equal', () => {
const initX = tensor1d([-1, -1, -1, -1]);
const expectedVals = tensor1d([
-0.15865525603294373,
-0.15865525603294373,
-0.15865525603294373,
-0.15865525603294373
]);
expectTensorsClose(gelu(initX), expectedVals);
});
it('2D', () => {
const initX = tensor2d([[0, 1, 3, 9], [0, 1, 3, 9]]);
const expectedVals = tensor2d([
[0, 0.8413447141647339, 2.995950222015381, 9],
[0, 0.8413447141647339, 2.995950222015381, 9]
]);
expectTensorsClose(gelu(initX), expectedVals);
});
it('3D', () => {
const initX = tensor3d([[[0, 1, 3, 9], [0, 1, 3, 9]]]);
const expectedVals = tensor3d([[
[ 0, 0.8413447141647339, 2.995950222015381, 9 ],
[ 0, 0.8413447141647339, 2.995950222015381, 9 ]
]]);
expectTensorsClose(gelu(initX), expectedVals);
});
it('Does not leak', () => {
const initX = tensor1d([0, 1, 3, 9]);
expectNoLeakedTensors(() => gelu(initX), 1);
});
});
describeMathCPUAndGPU('gelu_new activation', () => {
const geluNew = new GeluNew().apply;
// Setup: Array with initial values.
// Execute: GeluNew on the last dimension.
// Expect: Output array matches size and approximate expected values.
it('1D', () => {
const initX = tensor1d([0, 1, 3, 9]);
const expectedVals = tensor1d([
0,
0.8411920070648193,
2.9963626861572266,
9
]);
expectTensorsClose(geluNew(initX), expectedVals);
});
it('1D all equal', () => {
const initX = tensor1d([-1, -1, -1, -1]);
const expectedVals = tensor1d([
-0.15880802273750305,
-0.15880802273750305,
-0.15880802273750305,
-0.15880802273750305
]);
expectTensorsClose(geluNew(initX), expectedVals);
});
it('2D', () => {
const initX = tensor2d([[0, 1, 3, 9], [0, 1, 3, 9]]);
const expectedVals = tensor2d([
[ 0, 0.8411920070648193, 2.9963626861572266, 9 ],
[ 0, 0.8411920070648193, 2.9963626861572266, 9 ]
]);
expectTensorsClose(geluNew(initX), expectedVals);
});
it('3D', () => {
const initX = tensor3d([[[0, 1, 3, 9], [0, 1, 3, 9]]]);
const expectedVals = tensor3d([
[
[ 0, 0.8411920070648193, 2.9963626861572266, 9 ],
[ 0, 0.8411920070648193, 2.9963626861572266, 9 ]
]
]);
expectTensorsClose(geluNew(initX), expectedVals);
});
it('Does not leak', () => {
const initX = tensor1d([0, 1, 3, 9]);
expectNoLeakedTensors(() => geluNew(initX), 1);
});
});