UNPKG

@tensorflow/tfjs-core

Version:

Hardware-accelerated JavaScript library for machine intelligence

264 lines 13.3 kB
/** * @license * Copyright 2020 Google LLC. All Rights Reserved. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * ============================================================================= */ import * as tf from '../index'; import { ALL_ENVS, describeWithFlags } from '../jasmine_util'; import { expectArraysClose } from '../test_util'; describeWithFlags('maxPool', ALL_ENVS, () => { it('x=[1,1,1] f=[1,1] s=1 [0] => [0]', async () => { const x = tf.tensor3d([0], [1, 1, 1]); const result = tf.maxPool(x, 1, 1, 0); expectArraysClose(await result.data(), [0]); }); it('x=[3,3,1] f=[2,2] s=1, p=0', async () => { // Feed forward. const x = tf.tensor3d([1, 2, 3, 4, 5, 6, 7, 9, 8], [3, 3, 1]); const result = tf.maxPool(x, 2, 1, 0); expect(result.shape).toEqual([2, 2, 1]); expectArraysClose(await result.data(), [5, 6, 9, 9]); }); it('x=[3,3,1] f=[2,2] s=1 p=same', async () => { const x = tf.tensor3d([1, 2, 3, 4, 5, 6, 7, 9, 8], [3, 3, 1]); const result = tf.maxPool(x, 2, 1, 'same'); const resultData = await result.data(); tf.test_util.expectArraysClose(resultData, new Float32Array([5, 6, 6, 9, 9, 8, 9, 9, 8])); }); it('x=[2,3,3,1] f=[2,2] s=1', async () => { // Feed forward. const x = tf.tensor4d([1, 2, 3, 4, 5, 6, 7, 9, 8, 1, 2, 3, 4, 5, 6, 7, 8, 9], [2, 3, 3, 1]); const result = tf.maxPool(x, 2, 1, 0); expect(result.shape).toEqual([2, 2, 2, 1]); expectArraysClose(await result.data(), [5, 6, 9, 9, 5, 6, 8, 9]); }); it('[x=[3,3,1] f=[2,2] s=1 ignores NaNs', async () => { const x = tf.tensor3d([1, 2, 3, 4, 5, 6, 7, NaN, 9], [3, 3, 1]); const result = tf.maxPool(x, 2, 1, 0); expect(result.shape).toEqual([2, 2, 1]); expectArraysClose(await result.data(), [5, 6, 7, 9]); }); it('x=[3,3,2] f=[2,2] s=1', async () => { // Feed forward. const x = tf.tensor3d([1, 99, 2, 88, 3, 77, 4, 66, 5, 55, 6, 44, 7, 33, 9, 22, 8, 11], [3, 3, 2]); const result = tf.maxPool(x, 2, 1, 0); expect(result.shape).toEqual([2, 2, 2]); expectArraysClose(await result.data(), [5, 99, 6, 88, 9, 66, 9, 55]); }); it('x=[4,4,1] f=[2,2] s=2', async () => { // Feed forward. const x = tf.tensor3d([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15], [4, 4, 1]); const result = tf.maxPool(x, 2, 2, 0); expect(result.shape).toEqual([2, 2, 1]); expectArraysClose(await result.data(), [5, 7, 13, 15]); }); it('x=[2,2,1] f=[2,2] s=1 p=same', async () => { // Feed forward. const x = tf.tensor3d([1, 2, 3, 4], [2, 2, 1]); const fSize = 2; const strides = 1; const result = tf.maxPool(x, fSize, strides, 'same'); expect(result.shape).toEqual([2, 2, 1]); expectArraysClose(await result.data(), [4, 4, 4, 4]); }); it('x=[2,2,3] f=[1,1] s=2 p=1 dimRoundingMode=floor', () => { // Feed forward. const x = tf.tensor3d([1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12], [2, 2, 3]); const result = tf.maxPool(x, 1, 2, 1, 'floor'); expect(result.shape).toEqual([2, 2, 3]); }); it('throws when x is not rank 3', () => { // tslint:disable-next-line:no-any const x = tf.tensor2d([1, 2, 3, 4, 5, 6, 7, 8, 9], [3, 3]); expect(() => tf.maxPool(x, 2, 1, 0)).toThrowError(); }); it('throws when dimRoundingMode is set and pad is not a number', () => { const x = tf.tensor3d([1, 2, 3, 4], [2, 2, 1]); const pad = 'valid'; const dimRoundingMode = 'round'; expect(() => tf.maxPool(x, 2, 1, pad, dimRoundingMode)).toThrowError(); }); it('throws when passed a non-tensor', () => { expect(() => tf.maxPool({}, 2, 1, 'valid')) .toThrowError(/Argument 'x' passed to 'maxPool' must be a Tensor/); }); it('accepts a tensor-like object', async () => { const x = [[[0]]]; // 1x1x1 const result = tf.maxPool(x, 1, 1, 0); expectArraysClose(await result.data(), [0]); }); }); describeWithFlags('maxPoolBackprop', ALL_ENVS, () => { it('gradients x=[3,3,1] f=[2,2] s=1 no dup max value, test #1', async () => { const dy = tf.tensor3d([1, 2, 3, 4], [2, 2, 1]); const x = tf.tensor3d([1, 2, 3, 4, 5, 6, 7, 8, 9], [3, 3, 1]); const expected = [0, 0, 0, 0, 1, 2, 0, 3, 4]; const dx = tf.grad((x) => x.maxPool(2, 1, 0))(x, dy); expect(dx.shape).toEqual(x.shape); expectArraysClose(await dx.data(), expected); }); it('gradient with clones x=[3,3,1] f=[2,2] s=1', async () => { const dy = tf.tensor3d([1, 2, 3, 4], [2, 2, 1]); const x = tf.tensor3d([1, 2, 3, 4, 5, 6, 7, 8, 9], [3, 3, 1]); const expected = [0, 0, 0, 0, 1, 2, 0, 3, 4]; const dx = tf.grad((x) => tf.maxPool(x.clone(), 2, 1, 0).clone())(x, dy); expect(dx.shape).toEqual(x.shape); expectArraysClose(await dx.data(), expected); }); it('gradients x=[3,3,1] f=[2,2] s=1 no dup max value, test #2', async () => { const dy = tf.tensor3d([1, 2, 3, 4], [2, 2, 1]); const x = tf.tensor3d([9, 5, 6, 6, 8, 4, 9, 5, 10], [3, 3, 1]); const expected = [1, 0, 0, 0, 2, 0, 3, 0, 4]; const dx = tf.grad((x) => x.maxPool(2, 1, 0))(x, dy); expect(dx.shape).toEqual(x.shape); expectArraysClose(await dx.data(), expected); }); it('gradients x=[2,3,3,1] f=[2,2] s=1 no duplicate max value', async () => { // This test batches the [3,3,1] tests. const dy = tf.tensor4d([1, 2, 3, 4, 1, 2, 3, 4], [2, 2, 2, 1]); const x = tf.tensor4d([1, 2, 3, 4, 5, 6, 7, 8, 9, 9, 5, 6, 6, 8, 4, 9, 5, 10], [2, 3, 3, 1]); const expected = [0, 0, 0, 0, 1, 2, 0, 3, 4, 1, 0, 0, 0, 2, 0, 3, 0, 4]; const dx = tf.grad((x) => x.maxPool(2, 1, 0))(x, dy); expect(dx.shape).toEqual(x.shape); expectArraysClose(await dx.data(), expected); }); it('gradient x=[3,3,1] f=[2,2] s=1 dup max value, test 1', async () => { const dy = tf.tensor3d([1, 2, 3, 4], [2, 2, 1]); const x = tf.tensor3d([0, 0, 0, 0, 5, 0, 0, 0, 0], [3, 3, 1]); const expected = [0, 0, 0, 0, 10, 0, 0, 0, 0]; const dx = tf.grad((x) => x.maxPool(2, 1, 0))(x, dy); expect(dx.shape).toEqual(x.shape); expectArraysClose(await dx.data(), expected); }); it('gradient x=[3,3,1] f=[2,2] s=1 dup max value, test 2', async () => { const dy = tf.tensor3d([1, 2, 3, 4], [2, 2, 1]); const x = tf.tensor3d([1, 3, 2, 1, 2, 1, 1, 1, 5], [3, 3, 1]); const expected = [0, 3, 0, 0, 3, 0, 0, 0, 4]; const dx = tf.grad((x) => x.maxPool(2, 1, 0))(x, dy); expect(dx.shape).toEqual(x.shape); expectArraysClose(await dx.data(), expected); }); it('gradient x=[2,3,3,1] f=[2,2] s=1 dup max value in 2nd input', async () => { const dy = tf.tensor4d([1, 2, 3, 4, 5, 6, 7, 8], [2, 2, 2, 1]); const x = tf.tensor4d([1, 2, 3, 4, 5, 6, 7, 8, 9, 1, 2, 3, 4, 5, 6, 7, 9, 8], [2, 3, 3, 1]); const expected = new Float32Array([0, 0, 0, 0, 1, 2, 0, 3, 4, 0, 0, 0, 0, 5, 6, 0, 15, 0]); const dx = tf.grad((x) => x.maxPool(2, 1, 0))(x, dy); expect(dx.shape).toEqual(x.shape); expectArraysClose(await dx.data(), expected); }); it('gradient x=[4,4,1] f=[2,2] s=2 test #1', async () => { const dy = tf.tensor3d([1, 2, 3, 4], [2, 2, 1]); const x = tf.tensor3d([0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15], [4, 4, 1]); const expected = [0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 3, 0, 4]; const dx = tf.grad((x) => x.maxPool(2, 2, 0))(x, dy); expect(dx.shape).toEqual(x.shape); expectArraysClose(await dx.data(), expected); }); it('gradient x=[4,4,1] f=[2,2] s=2 test #2', async () => { const dy = tf.tensor3d([1, 2, 3, 4], [2, 2, 1]); const x = tf.tensor3d([1, 2, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 2, 1], [4, 4, 1]); const expected = [0, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 0]; const dx = tf.grad((x) => x.maxPool(2, 2, 0))(x, dy); expect(dx.shape).toEqual(x.shape); expectArraysClose(await dx.data(), expected); }); it('gradient x=[5,5,1] f=[3,3] s=2 no duplicate max value', async () => { const dy = tf.tensor3d([1, 2, 3, 4], [2, 2, 1]); const x = tf.tensor3d([ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24 ], [5, 5, 1]); const expected = [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 2, 0, 0, 0, 0, 0, 0, 0, 3, 0, 4 ]; const dx = tf.grad((x) => x.maxPool(3, 2, 0))(x, dy); expect(dx.shape).toEqual(x.shape); expectArraysClose(await dx.data(), expected); }); it('gradient x=[5,5,1] f=[3,3] s=2 duplicate max value', async () => { const dy = tf.tensor3d([1, 2, 3, 4], [2, 2, 1]); const x = tf.tensor3d([ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 24, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 12 ], [5, 5, 1]); const expected = [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]; const dx = tf.grad((x) => x.maxPool(3, 2, 0))(x, dy); expect(dx.shape).toEqual(x.shape); expectArraysClose(await dx.data(), expected); }); // Max pool backprop depth > 1. it('gradient x=[3,3,2] f=[2,2] s=1, no duplicate max value', async () => { // This test combines the first two 3x3x1 tests with no duplicates to // make depth=2, // dy is slightly modified to show the difference. const dy = tf.tensor3d([1, 44, 2, 33, 3, 22, 4, 11], [2, 2, 2]); const x = tf.tensor3d([1, 99, 2, 55, 3, 66, 4, 66, 5, 88, 6, 44, 7, 99, 8, 55, 9, 100], [3, 3, 2]); const expected = [0, 44, 0, 0, 0, 0, 0, 0, 1, 33, 2, 0, 0, 22, 3, 0, 4, 11]; const dx = tf.grad((x) => x.maxPool(2, 1, 0))(x, dy); expect(dx.shape).toEqual(x.shape); expectArraysClose(await dx.data(), expected); }); it('gradient x=[3,3,2] f=[2,2] s=1 duplicate max value', async () => { // This test combines the first two 3x3x1 tests with duplicates to // make depth=2, // dy is slightly modified to show the difference. const dy = tf.tensor3d([1, 44, 2, 33, 3, 22, 4, 11], [2, 2, 2]); const x = tf.tensor3d([0, 1, 0, 3, 0, 2, 0, 1, 5, 2, 0, 1, 0, 1, 0, 1, 0, 5], [3, 3, 2]); const expected = new Float32Array([0, 0, 0, 77, 0, 0, 0, 0, 10, 22, 0, 0, 0, 0, 0, 0, 0, 11]); const dx = tf.grad((x) => x.maxPool(2, 1, 0))(x, dy); expect(dx.shape).toEqual(x.shape); expectArraysClose(await dx.data(), expected); }); it('gradient x=[4,4,2] f=[2,2] s=1', async () => { // This test combines the first two 4x4x1 tests with duplicates to make // depth=2, // dy is slightly modified to show the difference. const dy = tf.tensor3d([1, 11, 2, 22, 3, 33, 4, 44], [2, 2, 2]); const x = tf.tensor3d([ 0, 1, 1, 2, 2, 2, 3, 1, 4, 1, 5, 1, 6, 1, 7, 1, 8, 1, 9, 1, 10, 1, 11, 1, 12, 1, 13, 2, 14, 2, 15, 1 ], [4, 4, 2]); const expected = [ 0, 0, 0, 11, 0, 22, 0, 0, 0, 0, 1, 0, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 33, 0, 44, 4, 0 ]; const dx = tf.grad((x) => x.maxPool(2, 2, 0))(x, dy); expect(dx.shape).toEqual(x.shape); expectArraysClose(await dx.data(), expected); }); it('gradient x=5x5x2, f=3, s=2 no duplicate max value', async () => { // This test combines the first two 5x5x1 tests with duplicates to make // depth=2, // dy is slightly modified to show the difference. const dy = tf.tensor3d([1, 11, 2, 22, 3, 33, 4, 44], [2, 2, 2]); const x = tf.tensor3d([ 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11, 12, 24, 13, 13, 14, 14, 15, 15, 16, 16, 17, 17, 18, 18, 19, 19, 20, 20, 21, 21, 22, 22, 23, 23, 24, 12 ], [5, 5, 2]); const expected = [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 110, 0, 0, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 0, 0, 4, 0 ]; const dx = tf.grad((x) => x.maxPool(3, 2, 0))(x, dy); expect(dx.shape).toEqual(x.shape); expectArraysClose(await dx.data(), expected); }); }); //# sourceMappingURL=max_pool_test.js.map