UNPKG

@tensorflow/tfjs-core

Version:

Hardware-accelerated JavaScript library for machine intelligence

866 lines 39.7 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var tf = require("../index"); var jasmine_util_1 = require("../jasmine_util"); var test_util_1 = require("../test_util"); jasmine_util_1.describeWithFlags('prelu', test_util_1.ALL_ENVS, function () { it('basic', function () { var x = tf.tensor1d([0, 1, -2, -4]); var a = tf.tensor1d([0.15, 0.2, 0.25, 0.15]); var result = tf.prelu(x, a); expect(result.shape).toEqual(x.shape); test_util_1.expectArraysClose(result, [0, 1, -0.5, -0.6]); }); it('basic TensorLike', function () { var x = [0, 1, -2, -4]; var a = [0.15, 0.2, 0.25, 0.15]; var result = tf.prelu(x, a); expect(result.shape).toEqual([4]); test_util_1.expectArraysClose(result, [0, 1, -0.5, -0.6]); }); it('basic TensorLike chained', function () { var x = tf.tensor1d([0, 1, -2, -4]); var a = [0.15, 0.2, 0.25, 0.15]; var result = x.prelu(a); expect(result.shape).toEqual(x.shape); test_util_1.expectArraysClose(result, [0, 1, -0.5, -0.6]); }); it('derivative', function () { var x = tf.tensor1d([0.5, 3, -0.1, -4]); var a = tf.tensor1d([0.2, 0.4, 0.25, 0.15]); var dy = tf.tensor1d([1, 1, 1, 1]); var dx = tf.grad(function (x) { return tf.prelu(x, a); })(x, dy); expect(dx.shape).toEqual(x.shape); expect(dx.dtype).toEqual('float32'); test_util_1.expectArraysClose(dx, [1, 1, 0.25, 0.15]); }); it('throws when passed x as a non-tensor', function () { expect(function () { return tf.prelu({}, tf.scalar(1)); }) .toThrowError(/Argument 'x' passed to 'prelu' must be a Tensor/); }); it('throws when passed alpha as a non-tensor', function () { expect(function () { return tf.prelu(tf.scalar(1), {}); }) .toThrowError(/Argument 'alpha' passed to 'prelu' must be a Tensor/); }); it('throws for string tensor', function () { expect(function () { return tf.prelu(['a'], 0.1); }) .toThrowError(/Argument 'x' passed to 'prelu' must be numeric tensor/); }); }); jasmine_util_1.describeWithFlags('maximum', test_util_1.ALL_ENVS, function () { it('float32 and float32', function () { var a = tf.tensor1d([0.5, 3, -0.1, -4]); var b = tf.tensor1d([0.2, 0.4, 0.25, 0.15]); var result = tf.maximum(a, b); expect(result.shape).toEqual(a.shape); test_util_1.expectArraysClose(result, [0.5, 3, 0.25, 0.15]); }); it('TensorLike', function () { var a = [0.5, 3, -0.1, -4]; var b = [0.2, 0.4, 0.25, 0.15]; var result = tf.maximum(a, b); expect(result.shape).toEqual([4]); test_util_1.expectArraysClose(result, [0.5, 3, 0.25, 0.15]); }); it('TensorLike chained', function () { var a = tf.tensor1d([0.5, 3, -0.1, -4]); var b = [0.2, 0.4, 0.25, 0.15]; var result = a.maximum(b); expect(result.shape).toEqual([4]); test_util_1.expectArraysClose(result, [0.5, 3, 0.25, 0.15]); }); it('int32 and int32', function () { var a = tf.tensor1d([1, 5, 2, 3], 'int32'); var b = tf.tensor1d([2, 3, 1, 4], 'int32'); var result = tf.maximum(a, b); expect(result.shape).toEqual(a.shape); expect(result.dtype).toBe('int32'); test_util_1.expectArraysEqual(result, [2, 5, 2, 4]); }); it('bool and bool', function () { var a = tf.tensor1d([true, false, false, true], 'bool'); var b = tf.tensor1d([false, false, true, true], 'bool'); var result = tf.maximum(a, b); expect(result.shape).toEqual(a.shape); expect(result.dtype).toBe('int32'); test_util_1.expectArraysEqual(result, [1, 0, 1, 1]); }); it('upcasts when dtypes dont match', function () { var a = tf.tensor1d([1, 0, 0, 1], 'float32'); var b = tf.tensor1d([0, 0, 1, 1], 'int32'); var res = tf.maximum(a, b); expect(res.shape).toEqual(a.shape); expect(res.dtype).toBe('float32'); test_util_1.expectArraysEqual(res, [1, 0, 1, 1]); }); it('propagates NaN', function () { var a = tf.tensor1d([0.5, -0.1, NaN]); var b = tf.tensor1d([0.2, 0.3, 0.25]); var result = tf.maximum(a, b); expect(result.shape).toEqual(a.shape); test_util_1.expectArraysClose(result, [0.5, 0.3, NaN]); }); it('broadcasts Tensor1D and scalar', function () { var a = tf.tensor1d([0.5, 3, -0.1, -4]); var b = tf.scalar(0.6); var result = tf.maximum(a, b); expect(result.shape).toEqual(a.shape); test_util_1.expectArraysClose(result, [0.6, 3, 0.6, 0.6]); }); it('broadcasts scalar and Tensor1D', function () { var a = tf.scalar(0.6); var b = tf.tensor1d([0.5, 3, -0.1, -4]); var result = tf.maximum(a, b); expect(result.shape).toEqual(b.shape); test_util_1.expectArraysClose(result, [0.6, 3, 0.6, 0.6]); }); it('broadcasts Tensor1D and Tensor2D', function () { var a = tf.tensor1d([0.5, 0.3]); var b = tf.tensor2d([0.2, 0.4, 0.6, 0.15], [2, 2]); var result = tf.maximum(a, b); expect(result.shape).toEqual(b.shape); test_util_1.expectArraysClose(result, [0.5, 0.4, 0.6, 0.3]); }); it('broadcasts 2x1 Tensor2D and 2x2 Tensor2D', function () { var a = tf.tensor2d([0.5, 0.3], [2, 1]); var b = tf.tensor2d([0.2, 0.4, 0.6, 0.15], [2, 2]); var result = tf.maximum(a, b); expect(result.shape).toEqual(b.shape); test_util_1.expectArraysClose(result, [0.5, 0.5, 0.6, 0.3]); }); it('gradients: Scalar', function () { var a = tf.scalar(5.2); var b = tf.scalar(0.6); var dy = tf.scalar(3); var grads = tf.grads(function (a, b) { return tf.maximum(a, b); }); var _a = grads([a, b], dy), da = _a[0], db = _a[1]; expect(da.shape).toEqual(a.shape); expect(db.shape).toEqual(b.shape); expect(da.dtype).toEqual('float32'); expect(db.dtype).toEqual('float32'); test_util_1.expectArraysClose(da, [3 * 1]); test_util_1.expectArraysClose(db, [3 * 0]); }); it('gradients: Tensor1D', function () { var a = tf.tensor1d([1.1, 2.6, 3, 5.9]); var b = tf.tensor1d([1.0, 2.7, 3, 5.8]); var dy = tf.tensor1d([1, 2, 3, 4]); var grads = tf.grads(function (a, b) { return tf.maximum(a, b); }); var _a = grads([a, b], dy), da = _a[0], db = _a[1]; expect(da.shape).toEqual(a.shape); expect(db.shape).toEqual(b.shape); expect(da.dtype).toEqual('float32'); expect(db.dtype).toEqual('float32'); test_util_1.expectArraysClose(da, [1 * 1, 2 * 0, 3 * 1, 4 * 1]); test_util_1.expectArraysClose(db, [1 * 0, 2 * 1, 3 * 0, 4 * 0]); }); it('gradients: Tensor2D', function () { var a = tf.tensor2d([0.5, 0.3, 0.7, 0.9], [2, 2]); var b = tf.tensor2d([0.2, 0.4, 0.7, 0.15], [2, 2]); var dy = tf.tensor2d([1, 2, 3, 4], [2, 2]); var grads = tf.grads(function (a, b) { return tf.maximum(a, b); }); var _a = grads([a, b], dy), da = _a[0], db = _a[1]; expect(da.shape).toEqual(a.shape); expect(db.shape).toEqual(b.shape); expect(da.dtype).toEqual('float32'); expect(db.dtype).toEqual('float32'); test_util_1.expectArraysClose(da, [1 * 1, 2 * 0, 3 * 1, 4 * 1]); test_util_1.expectArraysClose(db, [1 * 0, 2 * 1, 3 * 0, 4 * 0]); }); it('throws when passed a as a non-tensor', function () { expect(function () { return tf.maximum({}, tf.scalar(1)); }) .toThrowError(/Argument 'a' passed to 'maximum' must be a Tensor/); }); it('throws when passed b as a non-tensor', function () { expect(function () { return tf.maximum(tf.scalar(1), {}); }) .toThrowError(/Argument 'b' passed to 'maximum' must be a Tensor/); }); it('accepts a tensor-like object', function () { var a = [[0.5, 3], [-0.1, -4]]; var b = [[0.2, 0.4], [0.25, 0.15]]; var result = tf.maximum(a, b); expect(result.shape).toEqual([2, 2]); test_util_1.expectArraysClose(result, [0.5, 3, 0.25, 0.15]); }); it('throws for string tensor', function () { expect(function () { return tf.maximum('q', 3); }) .toThrowError(/Argument 'a' passed to 'maximum' must be numeric tensor/); expect(function () { return tf.maximum(3, 'q'); }) .toThrowError(/Argument 'b' passed to 'maximum' must be numeric tensor/); }); }); jasmine_util_1.describeWithFlags('squaredDifference', test_util_1.ALL_ENVS, function () { it('float32 and float32', function () { var a = tf.tensor1d([0.5, 3, -0.1, -4]); var b = tf.tensor1d([0.2, 0.4, 0.25, 0.15]); var result = tf.squaredDifference(a, b); expect(result.shape).toEqual(a.shape); test_util_1.expectArraysClose(result, [ Math.pow(0.5 - 0.2, 2), Math.pow(3 - 0.4, 2), Math.pow(-0.1 - 0.25, 2), Math.pow(-4 - 0.15, 2) ]); }); it('TensorLike', function () { var a = [0.5, 3, -0.1, -4]; var b = [0.2, 0.4, 0.25, 0.15]; var result = tf.squaredDifference(a, b); expect(result.shape).toEqual([4]); test_util_1.expectArraysClose(result, [ Math.pow(0.5 - 0.2, 2), Math.pow(3 - 0.4, 2), Math.pow(-0.1 - 0.25, 2), Math.pow(-4 - 0.15, 2) ]); }); it('TensorLike chained', function () { var a = tf.tensor1d([0.5, 3, -0.1, -4]); var b = [0.2, 0.4, 0.25, 0.15]; var result = a.squaredDifference(b); expect(result.shape).toEqual(a.shape); test_util_1.expectArraysClose(result, [ Math.pow(0.5 - 0.2, 2), Math.pow(3 - 0.4, 2), Math.pow(-0.1 - 0.25, 2), Math.pow(-4 - 0.15, 2) ]); }); it('int32 and int32', function () { var a = tf.tensor1d([1, 5, 2, 3], 'int32'); var b = tf.tensor1d([2, 3, 1, 4], 'int32'); var result = tf.squaredDifference(a, b); expect(result.shape).toEqual(a.shape); expect(result.dtype).toBe('int32'); test_util_1.expectArraysEqual(result, [ Math.pow(1 - 2, 2), Math.pow(5 - 3, 2), Math.pow(2 - 1, 2), Math.pow(3 - 4, 2) ]); }); it('upcasts when dtypes dont match', function () { var res = tf.squaredDifference(tf.scalar(5, 'int32'), tf.scalar(2, 'float32')); expect(res.dtype).toBe('float32'); test_util_1.expectArraysClose(res, [9]); res = tf.squaredDifference(tf.scalar(5, 'int32'), tf.scalar(true, 'bool')); expect(res.dtype).toBe('int32'); test_util_1.expectArraysClose(res, [16]); res = tf.squaredDifference(tf.scalar(5, 'int32'), tf.scalar(false, 'bool')); expect(res.dtype).toBe('int32'); test_util_1.expectArraysClose(res, [25]); }); it('propagates NaN', function () { var a = tf.tensor1d([0.5, -0.1, NaN]); var b = tf.tensor1d([0.2, 0.3, 0.25]); var result = tf.squaredDifference(a, b); expect(result.shape).toEqual(a.shape); test_util_1.expectArraysClose(result, [Math.pow(0.5 - 0.2, 2), Math.pow(-0.1 - 0.3, 2), NaN]); }); it('broadcasts Tensor1D and scalar', function () { var a = tf.tensor1d([0.5, 3, -0.1, -4]); var b = tf.scalar(0.6); var result = tf.squaredDifference(a, b); expect(result.shape).toEqual(a.shape); test_util_1.expectArraysClose(result, [ Math.pow(0.5 - 0.6, 2), Math.pow(3 - 0.6, 2), Math.pow(-0.1 - 0.6, 2), Math.pow(-4 - 0.6, 2) ]); }); it('broadcasts scalar and Tensor1D', function () { var a = tf.scalar(0.6); var b = tf.tensor1d([0.5, 3, -0.1, -4]); var result = tf.squaredDifference(a, b); expect(result.shape).toEqual(b.shape); test_util_1.expectArraysClose(result, [ Math.pow(0.6 - 0.5, 2), Math.pow(0.6 - 3, 2), Math.pow(0.6 - (-0.1), 2), Math.pow(0.6 - (-4), 2) ]); }); it('broadcasts Tensor1D and Tensor2D', function () { var a = tf.tensor1d([0.5, 0.3]); var b = tf.tensor2d([0.2, 0.4, 0.6, 0.15], [2, 2]); var result = tf.squaredDifference(a, b); expect(result.shape).toEqual(b.shape); test_util_1.expectArraysClose(result, [ Math.pow(0.5 - 0.2, 2), Math.pow(0.3 - 0.4, 2), Math.pow(0.5 - 0.6, 2), Math.pow(0.3 - 0.15, 2) ]); }); it('broadcasts 2x1 Tensor2D and 2x2 Tensor2D', function () { var a = tf.tensor2d([0.5, 0.3], [2, 1]); var b = tf.tensor2d([0.2, 0.4, 0.6, 0.15], [2, 2]); var result = tf.squaredDifference(a, b); expect(result.shape).toEqual(b.shape); test_util_1.expectArraysClose(result, [ Math.pow(0.5 - 0.2, 2), Math.pow(0.5 - 0.4, 2), Math.pow(0.3 - 0.6, 2), Math.pow(0.3 - 0.15, 2) ]); }); it('gradients: Scalar', function () { var a = tf.scalar(5.2); var b = tf.scalar(0.6); var dy = tf.scalar(3); var grads = tf.grads(function (a, b) { return tf.squaredDifference(a, b); }); var _a = grads([a, b], dy), da = _a[0], db = _a[1]; expect(da.shape).toEqual(a.shape); expect(db.shape).toEqual(b.shape); expect(da.dtype).toEqual('float32'); expect(db.dtype).toEqual('float32'); test_util_1.expectArraysClose(da, [3 * 2 * (5.2 - 0.6)]); test_util_1.expectArraysClose(db, [3 * 2 * (0.6 - 5.2)]); }); it('gradients: Tensor1D', function () { var a = tf.tensor1d([1.1, 2.6, 3, 5.9]); var b = tf.tensor1d([1.0, 2.7, 3, 5.8]); var dy = tf.tensor1d([1, 2, 3, 1]); var grads = tf.grads(function (a, b) { return tf.squaredDifference(a, b); }); var _a = grads([a, b], dy), da = _a[0], db = _a[1]; expect(da.shape).toEqual(a.shape); expect(db.shape).toEqual(b.shape); expect(da.dtype).toEqual('float32'); expect(db.dtype).toEqual('float32'); test_util_1.expectArraysClose(da, [ 1 * 2 * (1.1 - 1.0), 2 * 2 * (2.6 - 2.7), 3 * 2 * (3 - 3), 1 * 2 * (5.9 - 5.8) ]); test_util_1.expectArraysClose(db, [ 1 * 2 * (1.0 - 1.1), 2 * 2 * (2.7 - 2.6), 3 * 2 * (3 - 3), 1 * 2 * (5.8 - 5.9) ]); }); it('gradients: Tensor2D', function () { var a = tf.tensor2d([0.5, 0.3, 0.7, 0.9], [2, 2]); var b = tf.tensor2d([0.2, 0.4, 0.7, 0.15], [2, 2]); var dy = tf.tensor2d([1, 2, 3, 4], [2, 2]); var grads = tf.grads(function (a, b) { return tf.squaredDifference(a, b); }); var _a = grads([a, b], dy), da = _a[0], db = _a[1]; expect(da.shape).toEqual(a.shape); expect(db.shape).toEqual(b.shape); expect(da.dtype).toEqual('float32'); expect(db.dtype).toEqual('float32'); test_util_1.expectArraysClose(da, [ 1 * 2 * (0.5 - 0.2), 2 * 2 * (0.3 - 0.4), 3 * 2 * (0.7 - 0.7), 4 * 2 * (0.9 - 0.15) ]); test_util_1.expectArraysClose(db, [ 1 * 2 * (0.2 - 0.5), 2 * 2 * (0.4 - 0.3), 3 * 2 * (0.7 - 0.7), 4 * 2 * (0.15 - 0.9) ]); }); it('throws when passed a as a non-tensor', function () { expect(function () { return tf.squaredDifference({}, tf.scalar(1)); }) .toThrowError(/Argument 'a' passed to 'squaredDifference' must be a Tensor/); }); it('throws when passed b as a non-tensor', function () { expect(function () { return tf.squaredDifference(tf.scalar(1), {}); }) .toThrowError(/Argument 'b' passed to 'squaredDifference' must be a Tensor/); }); it('accepts a tensor-like object', function () { var a = [[0.5, 3], [-0.1, -4]]; var b = 0.6; var result = tf.squaredDifference(a, b); expect(result.shape).toEqual([2, 2]); test_util_1.expectArraysClose(result, [ Math.pow(0.5 - 0.6, 2), Math.pow(3 - 0.6, 2), Math.pow(-0.1 - 0.6, 2), Math.pow(-4 - 0.6, 2) ]); }); it('throws for string tensor', function () { expect(function () { return tf.squaredDifference('q', 3); }) .toThrowError(/Argument 'a' passed to 'squaredDifference' must be numeric/); expect(function () { return tf.squaredDifference(3, 'q'); }) .toThrowError(/Argument 'b' passed to 'squaredDifference' must be numeric/); }); }); jasmine_util_1.describeWithFlags('minimum', test_util_1.ALL_ENVS, function () { it('float32 and float32', function () { var a = tf.tensor1d([0.5, 3, -0.1, -4]); var b = tf.tensor1d([0.2, 0.4, 0.25, 0.15]); var result = tf.minimum(a, b); expect(result.shape).toEqual(a.shape); test_util_1.expectArraysClose(result, [0.2, 0.4, -0.1, -4]); }); it('TensorLike', function () { var a = [0.5, 3, -0.1, -4]; var b = [0.2, 0.4, 0.25, 0.15]; var result = tf.minimum(a, b); expect(result.shape).toEqual([4]); test_util_1.expectArraysClose(result, [0.2, 0.4, -0.1, -4]); }); it('TensorLike chained', function () { var a = tf.tensor1d([0.5, 3, -0.1, -4]); var b = [0.2, 0.4, 0.25, 0.15]; var result = a.minimum(b); expect(result.shape).toEqual(a.shape); test_util_1.expectArraysClose(result, [0.2, 0.4, -0.1, -4]); }); it('int32 and int32', function () { var a = tf.tensor1d([1, 5, 2, 3], 'int32'); var b = tf.tensor1d([2, 3, 1, 4], 'int32'); var result = tf.minimum(a, b); expect(result.shape).toEqual(a.shape); expect(result.dtype).toBe('int32'); test_util_1.expectArraysEqual(result, [1, 3, 1, 3]); }); it('bool and bool', function () { var a = tf.tensor1d([true, false, false, true], 'bool'); var b = tf.tensor1d([false, false, true, true], 'bool'); var result = tf.minimum(a, b); expect(result.shape).toEqual(a.shape); expect(result.dtype).toBe('int32'); test_util_1.expectArraysEqual(result, [0, 0, 0, 1]); }); it('upcasts when dtypes dont match', function () { var a = tf.tensor1d([1, 0, 0, 1], 'float32'); var b = tf.tensor1d([0, 0, 1, 1], 'int32'); var res = tf.minimum(a, b); expect(res.shape).toEqual(a.shape); expect(res.dtype).toBe('float32'); test_util_1.expectArraysEqual(res, [0, 0, 0, 1]); }); it('propagates NaN', function () { var a = tf.tensor1d([0.5, -0.1, NaN]); var b = tf.tensor1d([0.2, 0.3, 0.25]); var result = tf.minimum(a, b); expect(result.shape).toEqual(a.shape); test_util_1.expectArraysClose(result, [0.2, -0.1, NaN]); }); it('broadcasts Tensor1D and scalar', function () { var a = tf.tensor1d([0.5, 3, -0.1, -4]); var b = tf.scalar(0.6); var result = tf.minimum(a, b); expect(result.shape).toEqual(a.shape); test_util_1.expectArraysClose(result, [0.5, 0.6, -0.1, -4]); }); it('broadcasts scalar and Tensor1D', function () { var a = tf.scalar(0.6); var b = tf.tensor1d([0.5, 3, -0.1, -4]); var result = tf.minimum(a, b); expect(result.shape).toEqual(b.shape); test_util_1.expectArraysClose(result, [0.5, 0.6, -0.1, -4]); }); it('broadcasts Tensor1D and Tensor2D', function () { var a = tf.tensor1d([0.5, 0.3]); var b = tf.tensor2d([0.2, 0.4, 0.6, 0.15], [2, 2]); var result = tf.minimum(a, b); expect(result.shape).toEqual(b.shape); test_util_1.expectArraysClose(result, [0.2, 0.3, 0.5, 0.15]); }); it('broadcasts 2x1 Tensor2D and 2x2 Tensor2D', function () { var a = tf.tensor2d([0.5, 0.3], [2, 1]); var b = tf.tensor2d([0.2, 0.4, 0.6, 0.15], [2, 2]); var result = tf.minimum(a, b); expect(result.shape).toEqual(b.shape); test_util_1.expectArraysClose(result, [0.2, 0.4, 0.3, 0.15]); }); it('gradients: Scalar', function () { var a = tf.scalar(5.2); var b = tf.scalar(0.6); var dy = tf.scalar(3); var grads = tf.grads(function (a, b) { return tf.minimum(a, b); }); var _a = grads([a, b], dy), da = _a[0], db = _a[1]; expect(da.shape).toEqual(a.shape); expect(db.shape).toEqual(b.shape); expect(da.dtype).toEqual('float32'); expect(db.dtype).toEqual('float32'); test_util_1.expectArraysClose(da, [3 * 0]); test_util_1.expectArraysClose(db, [3 * 1]); }); it('gradients: Tensor1D', function () { var a = tf.tensor1d([1.1, 2.6, 3, 5.9]); var b = tf.tensor1d([1.0, 2.7, 3, 5.8]); var dy = tf.tensor1d([1, 2, 3, 4]); var grads = tf.grads(function (a, b) { return tf.minimum(a, b); }); var _a = grads([a, b], dy), da = _a[0], db = _a[1]; expect(da.shape).toEqual(a.shape); expect(db.shape).toEqual(b.shape); expect(da.dtype).toEqual('float32'); expect(db.dtype).toEqual('float32'); test_util_1.expectArraysClose(da, [1 * 0, 2 * 1, 3 * 1, 4 * 0]); test_util_1.expectArraysClose(db, [1 * 1, 2 * 0, 3 * 0, 4 * 1]); }); it('gradients: Tensor2D', function () { var a = tf.tensor2d([0.5, 0.3, 0.7, 0.9], [2, 2]); var b = tf.tensor2d([0.2, 0.4, 0.7, 0.15], [2, 2]); var dy = tf.tensor2d([1, 2, 3, 4], [2, 2]); var grads = tf.grads(function (a, b) { return tf.minimum(a, b); }); var _a = grads([a, b], dy), da = _a[0], db = _a[1]; expect(da.shape).toEqual(a.shape); expect(db.shape).toEqual(b.shape); expect(da.dtype).toEqual('float32'); expect(db.dtype).toEqual('float32'); test_util_1.expectArraysClose(da, [1 * 0, 2 * 1, 3 * 1, 4 * 0]); test_util_1.expectArraysClose(db, [1 * 1, 2 * 0, 3 * 0, 4 * 1]); }); it('throws when passed a as a non-tensor', function () { expect(function () { return tf.minimum({}, tf.scalar(1)); }) .toThrowError(/Argument 'a' passed to 'minimum' must be a Tensor/); }); it('throws when passed b as a non-tensor', function () { expect(function () { return tf.minimum(tf.scalar(1), {}); }) .toThrowError(/Argument 'b' passed to 'minimum' must be a Tensor/); }); it('accepts a tensor-like object', function () { var a = [[0.5, 3], [-0.1, -4]]; var b = [[0.2, 0.4], [0.25, 0.15]]; var result = tf.minimum(a, b); expect(result.shape).toEqual([2, 2]); test_util_1.expectArraysClose(result, [0.2, 0.4, -0.1, -4]); }); it('throws for string tensor', function () { expect(function () { return tf.minimum('q', 3); }) .toThrowError(/Argument 'a' passed to 'minimum' must be numeric/); expect(function () { return tf.minimum(3, 'q'); }) .toThrowError(/Argument 'b' passed to 'minimum' must be numeric/); }); }); jasmine_util_1.describeWithFlags('mod', test_util_1.ALL_ENVS, function () { it('float32 and float32', function () { var a = tf.tensor1d([0.5, 3, -0.1, -4]); var b = tf.tensor1d([0.2, 0.4, 0.25, 0.15]); var result = tf.mod(a, b); expect(result.shape).toEqual(a.shape); test_util_1.expectArraysClose(result, [0.1, 0.2, 0.15, 0.05]); }); it('TensorLike', function () { var a = [0.5, 3, -0.1, -4]; var b = [0.2, 0.4, 0.25, 0.15]; var result = tf.mod(a, b); expect(result.shape).toEqual([4]); test_util_1.expectArraysClose(result, [0.1, 0.2, 0.15, 0.05]); }); it('TensorLike chained', function () { var a = tf.tensor1d([0.5, 3, -0.1, -4]); var b = [0.2, 0.4, 0.25, 0.15]; var result = a.mod(b); expect(result.shape).toEqual(a.shape); test_util_1.expectArraysClose(result, [0.1, 0.2, 0.15, 0.05]); }); it('int32 and int32', function () { var a = tf.tensor1d([1, 5, 2, 3], 'int32'); var b = tf.tensor1d([2, 3, 1, 4], 'int32'); var result = tf.mod(a, b); expect(result.shape).toEqual(a.shape); expect(result.dtype).toBe('int32'); test_util_1.expectArraysEqual(result, [1, 2, 0, 3]); }); it('upcasts when dtypes dont match', function () { var res = tf.mod(tf.scalar(5, 'int32'), tf.scalar(2, 'float32')); expect(res.dtype).toBe('float32'); test_util_1.expectArraysClose(res, [1]); res = tf.mod(tf.scalar(5, 'int32'), tf.scalar(true, 'bool')); expect(res.dtype).toBe('int32'); test_util_1.expectArraysClose(res, [0]); }); it('propagates NaN', function () { var a = tf.tensor1d([5, -1, NaN]); var b = tf.tensor1d([2, 3, 0.25]); var result = tf.mod(a, b); expect(result.shape).toEqual(a.shape); test_util_1.expectArraysClose(result, [1, 2, NaN]); }); it('broadcasts Tensor1D and scalar', function () { var a = tf.tensor1d([0.5, 2.5, -0.1, -4], 'float32'); var b = tf.scalar(0.6); var result = tf.mod(a, b); expect(result.shape).toEqual(a.shape); test_util_1.expectArraysClose(result, [0.5, 0.1, 0.5, 0.2]); }); it('broadcasts scalar and Tensor1D', function () { var a = tf.scalar(2); var b = tf.tensor1d([3, 3, -1, -4]); var result = tf.mod(a, b); expect(result.shape).toEqual(b.shape); test_util_1.expectArraysClose(result, [2, 2, 0, -2]); }); it('broadcasts Tensor1D and Tensor2D', function () { var a = tf.tensor1d([0.5, 0.3]); var b = tf.tensor2d([0.2, 0.4, 0.6, 0.15], [2, 2]); var result = tf.mod(a, b); expect(result.shape).toEqual(b.shape); test_util_1.expectArraysClose(result, [0.1, 0.3, 0.5, 0.0]); }); it('broadcasts 2x1 Tensor2D and 2x2 Tensor2D', function () { var a = tf.tensor2d([0.5, 0.3], [2, 1]); var b = tf.tensor2d([0.2, 0.4, 0.6, 0.15], [2, 2]); var result = tf.mod(a, b); expect(result.shape).toEqual(b.shape); test_util_1.expectArraysClose(result, [0.1, 0.1, 0.3, 0.0]); }); it('gradients: Scalar', function () { var a = tf.scalar(5.2); var b = tf.scalar(0.6); var dy = tf.scalar(3); var grads = tf.grads(function (a, b) { return tf.mod(a, b); }); var _a = grads([a, b], dy), da = _a[0], db = _a[1]; expect(da.shape).toEqual(a.shape); expect(db.shape).toEqual(b.shape); expect(da.dtype).toEqual('float32'); expect(db.dtype).toEqual('float32'); test_util_1.expectArraysClose(da, [3]); test_util_1.expectArraysClose(db, [3 * -1 * Math.floor(5.2 / 0.6)]); }); it('gradients: Tensor1D', function () { var a = tf.tensor1d([1.1, 2.6, 3, 5.9]); var b = tf.tensor1d([1.0, 2.7, 3, 5.8]); var dy = tf.tensor1d([1, 2, 3, 4]); var grads = tf.grads(function (a, b) { return tf.mod(a, b); }); var _a = grads([a, b], dy), da = _a[0], db = _a[1]; expect(da.shape).toEqual(a.shape); expect(db.shape).toEqual(b.shape); expect(da.dtype).toEqual('float32'); expect(db.dtype).toEqual('float32'); test_util_1.expectArraysClose(da, [1 * 1, 2 * 1, 3 * 1, 4 * 1]); test_util_1.expectArraysClose(db, [ 1 * -1 * Math.floor(1.1 / 1.0), 2 * -1 * Math.floor(2.6 / 2.7), 3 * -1 * Math.floor(3 / 3), 4 * -1 * Math.floor(5.9 / 5.8) ]); }); it('gradients: Tensor2D', function () { var a = tf.tensor2d([0.5, 0.3, 0.7, 0.91], [2, 2]); var b = tf.tensor2d([0.2, 0.4, 0.7, 0.15], [2, 2]); var dy = tf.tensor2d([1, 2, 3, 4], [2, 2]); var grads = tf.grads(function (a, b) { return tf.mod(a, b); }); var _a = grads([a, b], dy), da = _a[0], db = _a[1]; expect(da.shape).toEqual(a.shape); expect(db.shape).toEqual(b.shape); expect(da.dtype).toEqual('float32'); expect(db.dtype).toEqual('float32'); test_util_1.expectArraysClose(da, [1 * 1, 2 * 1, 3 * 1, 4 * 1]); test_util_1.expectArraysClose(db, [ 1 * -1 * Math.floor(0.5 / 0.2), 2 * -1 * Math.floor(0.3 / 0.4), 3 * -1 * Math.floor(0.7 / 0.7), 4 * -1 * Math.floor(0.91 / 0.15) ]); }); it('gradients: broadcasts scalar and Tensor1D', function () { var a = tf.scalar(0.7); var b = tf.tensor1d([0.2, 0.3, 0.4, 0.5]); var dy = tf.tensor1d([1, 2, 3, 4]); var grads = tf.grads(function (a, b) { return tf.mod(a, b); }); var _a = grads([a, b], dy), da = _a[0], db = _a[1]; expect(da.shape).toEqual(a.shape); expect(db.shape).toEqual(b.shape); expect(da.dtype).toEqual('float32'); expect(db.dtype).toEqual('float32'); test_util_1.expectArraysClose(da, [1 + 2 + 3 + 4]); test_util_1.expectArraysClose(db, [ 1 * -1 * Math.floor(0.7 / 0.2), 2 * -1 * Math.floor(0.7 / 0.3), 3 * -1 * Math.floor(0.7 / 0.4), 4 * -1 * Math.floor(0.7 / 0.5) ]); }); it('broadcasts Tensor1D and Tensor2D', function () { var a = tf.tensor1d([0.5, 0.3]); var b = tf.tensor2d([0.2, 0.4, 0.7, 0.15], [2, 2]); var dy = tf.tensor2d([1, 2, 3, 4], [2, 2]); var grads = tf.grads(function (a, b) { return tf.mod(a, b); }); var _a = grads([a, b], dy), da = _a[0], db = _a[1]; expect(da.shape).toEqual(a.shape); expect(db.shape).toEqual(b.shape); expect(da.dtype).toEqual('float32'); expect(db.dtype).toEqual('float32'); test_util_1.expectArraysClose(da, [1 * 1 + 3 * 1, 2 * 1 + 4 * 1]); test_util_1.expectArraysClose(db, [ 1 * -1 * Math.floor(0.5 / 0.2), 2 * -1 * Math.floor(0.3 / 0.4), 3 * -1 * Math.floor(0.5 / 0.7), 4 * -1 * Math.floor(0.3 / 0.15) ]); }); it('throws when passed a as a non-tensor', function () { expect(function () { return tf.mod({}, tf.scalar(1)); }) .toThrowError(/Argument 'a' passed to 'mod' must be a Tensor/); }); it('throws when passed b as a non-tensor', function () { expect(function () { return tf.mod(tf.scalar(1), {}); }) .toThrowError(/Argument 'b' passed to 'mod' must be a Tensor/); }); it('accepts a tensor-like object', function () { var a = [[0.5, 3], [-0.1, -4]]; var b = [[0.2, 0.4], [0.25, 0.15]]; var result = tf.mod(a, b); expect(result.shape).toEqual([2, 2]); test_util_1.expectArraysClose(result, [0.1, 0.2, 0.15, 0.05]); }); it('throws for string tensor', function () { expect(function () { return tf.mod('q', 3); }) .toThrowError(/Argument 'a' passed to 'mod' must be numeric/); expect(function () { return tf.mod(3, 'q'); }) .toThrowError(/Argument 'b' passed to 'mod' must be numeric/); }); }); jasmine_util_1.describeWithFlags('atan2', test_util_1.ALL_ENVS, function () { it('same shape', function () { var aValues = [1.0, 2.0, 3.0, 4.0, 5.0, 6.0]; var bValues = [1.0, 2.5, 3.5, 4.5, 2.0, 5.0]; var a = tf.tensor2d(aValues, [2, 3]); var c = tf.tensor2d(bValues, [2, 3]); var r = tf.atan2(a, c); var expected = []; for (var i = 0; i < a.size; i++) { expected[i] = Math.atan2(aValues[i], bValues[i]); } test_util_1.expectArraysClose(r, expected); }); it('uses chaining', function () { var aValues = [1.0, 2.0, 3.0, 4.0, 5.0, 6.0]; var bValues = [1.0, 2.5, 3.5, 4.5, 2.0, 5.0]; var a = tf.tensor2d(aValues, [2, 3]); var b = tf.tensor2d(bValues, [2, 3]); var r = a.atan2(b); var expected = []; for (var i = 0; i < a.size; i++) { expected[i] = Math.atan2(aValues[i], bValues[i]); } test_util_1.expectArraysClose(r, expected); }); it('propagates NaNs', function () { var a = tf.tensor2d([1.0, 2.0], [2, 1]); var c = tf.tensor2d([3.0, NaN], [2, 1]); var r = tf.atan2(a, c); test_util_1.expectArraysClose(r, [Math.atan2(1.0, 3.0), NaN]); }); it('broadcasting same rank Tensors different shape', function () { var aValues = [1.0, 2.0, -3.0, -4.0]; var bValues = [2.0, 3.0]; var a = tf.tensor2d(aValues, [2, 2]); var b = tf.tensor2d(bValues, [2, 1]); var result = tf.atan2(a, b); expect(result.shape).toEqual([2, 2]); var expected = [ Math.atan2(1.0, 2.0), Math.atan2(2.0, 2.0), Math.atan2(-3.0, 3.0), Math.atan2(-4.0, 3.0) ]; test_util_1.expectArraysClose(result, expected); }); it('throws when passed tensors of different shapes', function () { var a = tf.tensor2d([1, 2, -3, -4, 5, 6], [2, 3]); var b = tf.tensor2d([5, 3, 4, -7], [2, 2]); expect(function () { return tf.atan2(a, b); }).toThrowError(); expect(function () { return tf.atan2(b, a); }).toThrowError(); }); it('upcasts when dtypes dont match', function () { var aValues = [1.0, 2.0, 3.0, 4.0, 5.0, 6.0]; var bValues = [1, 2, 3, 4, 2, 5]; var a = tf.tensor2d(aValues, [2, 3], 'float32'); var c = tf.tensor2d(bValues, [2, 3], 'int32'); var r = tf.atan2(a, c); var expected = []; for (var i = 0; i < a.size; i++) { expected[i] = Math.atan2(aValues[i], bValues[i]); } expect(r.shape).toEqual([2, 3]); expect(r.dtype).toBe('float32'); test_util_1.expectArraysClose(r, expected); }); it('atan2 of scalar and array propagates NaNs', function () { var c = tf.scalar(NaN); var a = tf.tensor2d([1, 2, 3], [1, 3]); var r = tf.atan2(c, a); test_util_1.expectArraysEqual(r, [NaN, NaN, NaN]); }); it('atan2 of scalar and array', function () { var aValues = [1, 2, 3, 4, 5, 6]; var a = tf.tensor2d(aValues, [2, 3]); var c = tf.scalar(2); var r = tf.atan2(a, c); var expected = []; for (var i = 0; i < a.size; i++) { expected[i] = Math.atan2(aValues[i], 2); } test_util_1.expectArraysClose(r, expected); }); it('gradient: Scalar', function () { var a = tf.scalar(5); var b = tf.scalar(2); var dy = tf.scalar(4); var grads = tf.grads(function (a, b) { return tf.atan2(a, b); }); var _a = grads([a, b], dy), da = _a[0], db = _a[1]; expect(da.shape).toEqual(a.shape); expect(da.dtype).toEqual('float32'); test_util_1.expectArraysClose(da, [4 * 2 / 29]); expect(db.shape).toEqual(b.shape); expect(db.dtype).toEqual('float32'); test_util_1.expectArraysClose(db, [4 * -5 / 29]); }); it('gradient: Tensor1D', function () { var a = tf.tensor1d([1, 2, 3]); var b = tf.tensor1d([3, 4, 5]); var dy = tf.tensor1d([1, 10, 20]); var grads = tf.grads(function (a, b) { return tf.atan2(a, b); }); var _a = grads([a, b], dy), da = _a[0], db = _a[1]; expect(da.shape).toEqual(a.shape); expect(db.dtype).toEqual('float32'); test_util_1.expectArraysClose(da, [1 * 3 / 10, 10 * 4 / 20, 20 * 5 / 34]); expect(db.shape).toEqual(b.shape); expect(db.dtype).toEqual('float32'); test_util_1.expectArraysClose(db, [-1 * 1 / 10, -10 * 2 / 20, -20 * 3 / 34]); }); it('gradient: Tensor2D', function () { var a = tf.tensor2d([3, 1, 2, 3], [2, 2]); var b = tf.tensor2d([1, 3, 4, 5], [2, 2]); var dy = tf.tensor2d([1, 10, 15, 20], [2, 2]); var grads = tf.grads(function (a, b) { return tf.atan2(a, b); }); var _a = grads([a, b], dy), da = _a[0], db = _a[1]; expect(da.shape).toEqual(a.shape); expect(da.dtype).toEqual('float32'); test_util_1.expectArraysClose(da, [1 * 1 / 10, 10 * 3 / 10, 15 * 4 / 20, 20 * 5 / 34]); expect(db.shape).toEqual(b.shape); expect(db.dtype).toEqual('float32'); test_util_1.expectArraysClose(db, [-1 * 3 / 10, -10 * 1 / 10, -15 * 2 / 20, -20 * 3 / 34]); }); it('gradient: scalar / Tensor1D', function () { var a = tf.scalar(2); var b = tf.tensor1d([3, 4, 5]); var dy = tf.tensor1d([6, 7, 8]); var grads = tf.grads(function (a, b) { return tf.atan2(a, b); }); var _a = grads([a, b], dy), da = _a[0], db = _a[1]; expect(da.shape).toEqual(a.shape); expect(da.dtype).toEqual('float32'); test_util_1.expectArraysClose(da, [6 * 3 / 13 + 7 * 4 / 20 + 8 * 5 / 29]); expect(db.shape).toEqual(b.shape); expect(db.dtype).toEqual('float32'); test_util_1.expectArraysClose(db, [-6 * 2 / 13, -7 * 2 / 20, -8 * 2 / 29]); }); it('gradient: Tensor2D / scalar', function () { var a = tf.tensor2d([[2, 3], [4, 5]], [2, 2]); var b = tf.scalar(2); var dy = tf.tensor2d([[6, 7], [8, 9]], [2, 2]); var grads = tf.grads(function (a, b) { return tf.atan2(a, b); }); var _a = grads([a, b], dy), da = _a[0], db = _a[1]; expect(da.shape).toEqual(a.shape); expect(da.dtype).toEqual('float32'); test_util_1.expectArraysClose(da, [6 * 2 / 8, 7 * 2 / 13, 8 * 2 / 20, 9 * 2 / 29]); expect(db.shape).toEqual(b.shape); expect(db.dtype).toEqual('float32'); test_util_1.expectArraysClose(db, [-6 * 2 / 8 + -7 * 3 / 13 + -8 * 4 / 20 + -9 * 5 / 29]); }); it('gradient: Tensor2D / Tensor2D w/ broadcast', function () { var a = tf.tensor2d([3, 4], [2, 1]); var b = tf.tensor2d([[2, 3], [4, 5]], [2, 2]); var dy = tf.tensor2d([[6, 7], [8, 9]], [2, 2]); var grads = tf.grads(function (a, b) { return tf.atan2(a, b); }); var _a = grads([a, b], dy), da = _a[0], db = _a[1]; expect(da.shape).toEqual(a.shape); expect(da.dtype).toEqual('float32'); test_util_1.expectArraysClose(da, [6 * 2 / 13 + 7 * 3 / 18, 8 * 4 / 32 + 9 * 5 / 41]); expect(db.shape).toEqual(b.shape); expect(db.dtype).toEqual('float32'); test_util_1.expectArraysClose(db, [-6 * 3 / 13, -7 * 3 / 18, -8 * 4 / 32, -9 * 4 / 41]); }); it('throws when passed a as a non-tensor', function () { expect(function () { return tf.atan2({}, tf.scalar(1)); }) .toThrowError(/Argument 'a' passed to 'atan2' must be a Tensor/); }); it('throws when passed b as a non-tensor', function () { expect(function () { return tf.atan2(tf.scalar(1), {}); }) .toThrowError(/Argument 'b' passed to 'atan2' must be a Tensor/); }); it('accepts a tensor-like object', function () { var a = [[1, 2, 3], [4, 5, 6]]; var c = 2; var r = tf.atan2(a, c); var expected = []; for (var i = 0; i < 6; i++) { expected[i] = Math.atan2(i + 1, 2); } test_util_1.expectArraysClose(r, expected); }); it('throws for string tensor', function () { expect(function () { return tf.atan2('q', 3); }) .toThrowError(/Argument 'a' passed to 'atan2' must be numeric/); expect(function () { return tf.atan2(3, 'q'); }) .toThrowError(/Argument 'b' passed to 'atan2' must be numeric/); }); }); //# sourceMappingURL=binary_ops_test.js.map