UNPKG

1.7 kBTypeScriptView Raw
1/**
2 * @license
3 * Copyright 2020 Google LLC. All Rights Reserved.
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 * =============================================================================
16 */
17/// <amd-module name="@tensorflow/tfjs-core/dist/ops/local_response_normalization" />
18import { Tensor3D, Tensor4D } from '../tensor';
19import { TensorLike } from '../types';
20/**
21 * Normalizes the activation of a local neighborhood across or within
22 * channels.
23 *
24 * @param x The input tensor. The 4-D input tensor is treated as a 3-D array
25 * of 1D vectors (along the last dimension), and each vector is
26 * normalized independently.
27 * @param depthRadius The number of adjacent channels in the 1D normalization
28 * window.
29 * @param bias A constant bias term for the basis.
30 * @param alpha A scale factor, usually positive.
31 * @param beta An exponent.
32 *
33 * @doc {heading: 'Operations', subheading: 'Normalization'}
34 */
35declare function localResponseNormalization_<T extends Tensor3D | Tensor4D>(x: T | TensorLike, depthRadius?: number, bias?: number, alpha?: number, beta?: number): T;
36export declare const localResponseNormalization: typeof localResponseNormalization_;
37export {};