当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Tensorflow.js tf.dilation2d()用法及代码示例


Tensorflow.js是由Google开发的开源库,用于在浏览器或节点环境中运行机器学习模型以及深度学习神经网络。

.dilation2d() 函数用于评估指定输入张量的灰度膨胀。

用法:

tf.dilation2d(x, filter, strides, pad, dilations?, dataFormat?)

参数:

  • x:指定的输入张量是 3 级或 4 级,形状为:[batch, height, width, inChannels]。此外,如果等级为 3,则假定批次大小为 1。它可以是 tf.Tensor3D、tf.Tensor4D、TypedArray 或 Array 类型。
  • filter:所述的 3 级滤波器张量和形状:[filterHeight, filterWidth, depth]。它可以是 tf.Tensor3D、TypedArray 或 Array 类型。
  • strides:给定输入张量的每个尺寸的滑动窗口的规定步幅:[strideHeight, strideWidth]。如果规定的步幅是单个数字,则 strideHeight == strideWidth。它可以是 [number, number] 或 number 类型。
  • pad:规定的填充算法类型。它可以是有效或相同的类型。
    1. 在这里,对于相同和步长 1,无论过滤器大小如何,输出都将具有与输入相同的大小。
    2. 对于,‘valid’,在滤波器尺寸大于1*1×1的情况下,输出应小于输入。
  • dilations:规定的扩张率:[dilationHeight, dilationWidth] 因为输入值在高度和宽度维度上采样,有利于多孔形态扩张。默认值为 [1, 1]。此外,如果 dilation 是单个数字,则 dilationHeight == dilationWidth。如果它大于 1,则步长的所有值都应为 1。它是可选的,类型为 [number, number], number。
  • dataFormat:它指定了所述输入和输出数据的数据格式。默认值为“NHWC”。而且,这里的数据是按照以下顺序存储的:[batch, height, width, channels]。它是可选的,属于“NHWC”类型。

返回值:它返回 tf.Tensor3D 或 tf.Tensor4D。



范例1:

Javascript


// Importing the tensorflow.js library
import * as tf from "@tensorflow/tfjs"
  
// Defining input tensor
const x = tf.tensor3d([1, 2, 3, 4], [2, 2, 1]);
  
// Defining filter tensor
const y = tf.tensor3d([1, 1, 0, 4], [1, 1, 4]);
  
// Calling dilation2d() method
const result = tf.dilation2d(x, y, 2, 'valid');
  
// Printing output
result.print();

输出:

Tensor
     [ [[2],]]

范例2:

Javascript


// Importing the tensorflow.js library
import * as tf from "@tensorflow/tfjs"
  
// Calling dilation2d() method with 
// all its parameters
tf.tensor3d([1.1, 2.2, 3.3, 4.4], [2, 2, 1]).dilation2d(
 tf.tensor3d([1.3, 1.2, null, -4], [1, 1, 4]),
             2, 'valid', [3, 2], 'NHWC').print();

输出:

Tensor
     [ [[2.4000001],]]

参考:https://js.tensorflow.org/api/latest/#dilation2d




相关用法


注:本文由纯净天空筛选整理自nidhi1352singh大神的英文原创作品 Tensorflow.js tf.dilation2d() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。