简介:Tensorflow.js 是 Google 开发的一个开源库,用于在浏览器或节点环境中运行机器学习模型以及深度学习神经网络。
.conv2dTranspose() 函数用于确定图像的转置二维卷积。它也被认为是去卷积。
用法:
tf.conv2dTranspose(x, filter, outputShape, strides, pad, dimRoundingMode?)
参数:
- x:所述输入图像为 3 级或 4 级且形状为:[batch, height, width, inDepth]。此外,如果等级为 3,则假定批次大小为 1。它可以是 tf.Tensor3D、tf.Tensor4D、TypedArray 或 Array 类型。
- filter:所述的 4 级滤波器张量和形状:[filterHeight, filterWidth, outDepth, inDepth]。其中,inDepth 必须与输入张量中的 inDepth 匹配。它可以是 tf.Tensor4D、TypedArray 或 Array 类型。
- outputShape:指定的输出形状为 4 级或 3 级,形状为 [batch, height, width, outDepth]。如果等级为 3,则假定批次为 1。它可以是[数字,数字,数字,数字]或[数字,数字,数字]类型。
- strides:形状的原始卷积的所述步幅:[strideHeight, strideWidth]。它可以是 [number, number] 或 number 类型。
- pad:用于填充的所述算法类型,在 op 的非转置形式中很有用。它可以是有效、相同、数字或 ExplicitPadding 类型。
- dimRoundingMode:从 ‘ceil’、'round' 或 ‘floor’ 中指定的字符串。如果未提供任何值,则默认值为 truncate。它是可选的,类型为 ceil、round 或 floor。
返回值:它返回 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, 2, 3], [2, 2, 1]);
// Defining filter tensor
const y = tf.tensor4d([3, 3, 3, 2], [1, 2, 2, 1]);
// Calling conv2dTranspose() method
const result = tf.conv2dTranspose(x, y, [1, 1, 2], 2, 'same');
// Printing output
result.print();
输出:
Tensor [ [[3, 3],]]
范例2:
Javascript
// Importing the tensorflow.js library
import * as tf from "@tensorflow/tfjs"
// Calling conv2dTranspose() method with
// all its parameters
tf.tensor3d([1.1, 2.2, 3.3, 4.4], [2, 2, 1]).conv2dTranspose(
tf.tensor4d([1.3, 1.2, null, -4], [1, 2, 2, 1]),
[1, 1, 2], 1, 1, 'ceil').print();
输出:
Tensor [ [[5.7199998, -7.9199996],]]
参考:https://js.tensorflow.org/api/latest/#conv2dTranspose
相关用法
- PHP imagecreatetruecolor()用法及代码示例
- p5.js year()用法及代码示例
- d3.js d3.utcTuesdays()用法及代码示例
- PHP ImagickDraw getTextAlignment()用法及代码示例
- PHP Ds\Sequence last()用法及代码示例
- PHP Imagick floodFillPaintImage()用法及代码示例
- PHP geoip_continent_code_by_name()用法及代码示例
- d3.js d3.map.set()用法及代码示例
- PHP GmagickPixel setcolor()用法及代码示例
- Tensorflow.js tf.layers.embedding()用法及代码示例
- PHP opendir()用法及代码示例
- d3.js d3.bisectLeft()用法及代码示例
注:本文由纯净天空筛选整理自nidhi1352singh大神的英文原创作品 Tensorflow.js tf.conv2dTranspose() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。