UNPKG

1.53 kBTypeScriptView Raw
1/// <amd-module name="@tensorflow/tfjs-core/dist/ops/batchnorm4d" />
2/**
3 * @license
4 * Copyright 2020 Google LLC. All Rights Reserved.
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 * =============================================================================
17 */
18import { Tensor1D, Tensor4D } from '../tensor';
19import { TensorLike } from '../types';
20/**
21 * Batch normalization, strictly for 4D. For the more relaxed version, see
22 * `tf.batchNorm`.
23 *
24 * @param x The input Tensor.
25 * @param mean A mean Tensor.
26 * @param variance A variance Tensor.
27 * @param offset An offset Tensor.
28 * @param scale A scale Tensor.
29 * @param varianceEpsilon A small float number to avoid dividing by 0.
30 */
31declare function batchNorm4d_(x: Tensor4D | TensorLike, mean: Tensor4D | Tensor1D | TensorLike, variance: Tensor4D | Tensor1D | TensorLike, offset?: Tensor4D | Tensor1D | TensorLike, scale?: Tensor4D | Tensor1D | TensorLike, varianceEpsilon?: number): Tensor4D;
32export declare const batchNorm4d: typeof batchNorm4d_;
33export {};