UNPKG

@tensorflow/tfjs-core

Version:

Hardware-accelerated JavaScript library for machine intelligence

134 lines 7.02 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('cosineDistance', ALL_ENVS, () => { it('1D', async () => { const predictions = tf.tensor1d([1, 2, 3]); const label = tf.tensor1d([0.3, -0.6, -0.1]); const y = tf.losses.cosineDistance(label, predictions, 0); expect(y.shape).toEqual([]); expectArraysClose(await y.data(), 1 - (1 * 0.3 + 2 * -0.6 + 3 * -0.1)); }); it('1D - weighted - Reduction.SUM_BY_NONZERO_WEIGHTS', async () => { const predictions = tf.tensor1d([1, 2, 3]); const label = tf.tensor1d([0.3, -0.6, -0.1]); const weights = tf.scalar(0.1); const y = tf.losses.cosineDistance(label, predictions, 0, weights); expect(y.shape).toEqual([]); expectArraysClose(await y.data(), (1 - (1 * 0.3 + 2 * -0.6 + 3 * -0.1)) * 0.1); }); it('1D - weighted - Reduction.NONE', async () => { const predictions = tf.tensor1d([1, 2, 3]); const label = tf.tensor1d([0.3, -0.6, -0.1]); const weights = tf.scalar(0.1); const y = tf.losses.cosineDistance(label, predictions, 0, weights, tf.Reduction.NONE); expect(y.shape).toEqual([1]); expectArraysClose(await y.data(), [(1 - (1 * 0.3 + 2 * -0.6 + 3 * -0.1)) * 0.1]); }); it('1D - Reduction.MEAN', async () => { const predictions = tf.tensor1d([1, 2, 3]); const label = tf.tensor1d([0.3, -0.6, -0.1]); const y = tf.losses.cosineDistance(label, predictions, 0, undefined, tf.Reduction.MEAN); expect(y.shape).toEqual([]); expectArraysClose(await y.data(), (1 - (1 * 0.3 + 2 * -0.6 + 3 * -0.1))); }); it('1D - weighted - Reduction.MEAN', async () => { const predictions = tf.tensor1d([1, 2, 3]); const label = tf.tensor1d([0.3, -0.6, -0.1]); const weights = tf.scalar(0.1); const y = tf.losses.cosineDistance(label, predictions, 0, weights, tf.Reduction.MEAN); expect(y.shape).toEqual([]); expectArraysClose(await y.data(), ((1 - (1 * 0.3 + 2 * -0.6 + 3 * -0.1)) * 0.1) / 0.1); }); it('2D', async () => { const predictions = tf.tensor2d([4, 8, 12, 8, 1, 3], [2, 3]); const label = tf.tensor2d([1, 9, 2, -5, -2, 6], [2, 3]); const y = tf.losses.cosineDistance(label, predictions, 1); expect(y.shape).toEqual([]); expectArraysClose(await y.data(), ((1 - (4 * 1 + 8 * 9 + 12 * 2)) + (1 - (8 * -5 + 1 * -2 + 3 * 6))) / 2); }); it('2D - weighted - Reduction.SUM_BY_NONZERO_WEIGHTS', async () => { const predictions = tf.tensor2d([4, 8, 12, 8, 1, 3], [2, 3]); const label = tf.tensor2d([1, 9, 2, -5, -2, 6], [2, 3]); const weights = tf.tensor2d([3, 0], [2, 1]); const y = tf.losses.cosineDistance(label, predictions, 1, weights); expect(y.shape).toEqual([]); expectArraysClose(await y.data(), ((1 - (4 * 1 + 8 * 9 + 12 * 2)) * 3 + (1 - (8 * -5 + 1 * -2 + 3 * 6)) * 0) / 1); }); it('2D - weighted - Reduction.NONE', async () => { const predictions = tf.tensor2d([4, 8, 12, 8, 1, 3], [2, 3]); const label = tf.tensor2d([1, 9, 2, -5, -2, 6], [2, 3]); const weights = tf.tensor2d([3, 0], [2, 1]); const y = tf.losses.cosineDistance(label, predictions, 1, weights, tf.Reduction.NONE); expect(y.shape).toEqual([2, 1]); expectArraysClose(await y.data(), [ (1 - (4 * 1 + 8 * 9 + 12 * 2)) * 3, (1 - (8 * -5 + 1 * -2 + 3 * 6)) * 0 ]); }); it('2D - Reduction.MEAN', async () => { const predictions = tf.tensor2d([4, 8, 12, 8, 1, 3], [2, 3]); const label = tf.tensor2d([1, 9, 2, -5, -2, 6], [2, 3]); const y = tf.losses.cosineDistance(label, predictions, 1, undefined, tf.Reduction.MEAN); expect(y.shape).toEqual([]); expectArraysClose(await y.data(), ((1 - (4 * 1 + 8 * 9 + 12 * 2)) + (1 - (8 * -5 + 1 * -2 + 3 * 6))) / 2); }); it('2D - weighted - Reduction.MEAN', async () => { const predictions = tf.tensor2d([4, 8, 12, 8, 1, 3], [2, 3]); const label = tf.tensor2d([1, 9, 2, -5, -2, 6], [2, 3]); const weights = tf.tensor2d([3, 0], [2, 1]); const y = tf.losses.cosineDistance(label, predictions, 1, weights, tf.Reduction.MEAN); expect(y.shape).toEqual([]); expectArraysClose(await y.data(), ((1 - (4 * 1 + 8 * 9 + 12 * 2)) * 3 + (1 - (8 * -5 + 1 * -2 + 3 * 6)) * 0) / 3); }); it('throws when passed label as a non-tensor', () => { const predictions = tf.tensor2d([4, 8, 12, 8, 1, 3], [2, 3]); const weights = tf.tensor2d([3, 6, 5, 0, 4, 2], [2, 3]); const e = /Argument 'labels' passed to 'cosineDistance' must be a Tensor/; expect(() => tf.losses.cosineDistance({}, predictions, 0, weights, tf.Reduction.MEAN)) .toThrowError(e); }); it('throws when passed label as a non-tensor', () => { const label = tf.tensor2d([1, 9, 2, -5, -2, 6], [2, 3]); const weights = tf.tensor2d([3, 6, 5, 0, 4, 2], [2, 3]); const e = new RegExp('Argument \'predictions\' passed to \'cosineDistance\' ' + 'must be a Tensor'); expect(() => tf.losses.cosineDistance(label, {}, 0, weights, tf.Reduction.MEAN)) .toThrowError(e); }); it('throws when passed weights as a non-tensor', () => { const predictions = tf.tensor2d([4, 8, 12, 8, 1, 3], [2, 3]); const label = tf.tensor2d([1, 9, 2, -5, -2, 6], [2, 3]); const e = /Argument 'weights' passed to 'cosineDistance' must be a Tensor/; expect(() => tf.losses.cosineDistance(label, predictions, 0, {}, tf.Reduction.MEAN)) .toThrowError(e); }); it('accepts a tensor-like object', async () => { const predictions = [1, 2, 3]; const label = [0.3, -0.6, -0.1]; const weights = 0.1; const y = tf.losses.cosineDistance(label, predictions, 0, weights, tf.Reduction.NONE); expect(y.shape).toEqual([1]); expectArraysClose(await y.data(), [(1 - (1 * 0.3 + 2 * -0.6 + 3 * -0.1)) * 0.1]); }); }); //# sourceMappingURL=cosine_distance_test.js.map