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


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


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

tf.avgPool3d()函数用于计算3D平均池。

用法:

tf.avgPool3d(x, filterSize, strides, pad, 
                  dimRoundingMode?, dataFormat?)

参数:此函数接受如下所示的参数:

  • x:指定的输入张量为等级5或等级4。
  • filterSize:这指定filterDepth,filterHeight,filterWidth。如果指定的filterSize是单个数字,则filterWidth == filterHeight == filterDepth。
  • strides:指定池的跨步:[strideDepth,strideHeight,strideWidth]。如果指定的步幅是单个数字,则strideWidth == strideHeight == strideDepth。
  • pad:这指定了填充算法的类型。
  • dimRoundingMode:这是可选的。这指定了以下字符串:‘ceil’,“ round”,‘floor’。如果未提供任何内容,则它将默认将其值截断。
  • dataFormat:这是可选的。这指定输出和输入数据的数据格式。

返回值:它返回张量元素的3D平均合并。



以下示例说明了avgPool3d()函数的用法。

范例1:

Javascript


// Importing the tensorflow.js library
import * as tf from "@tensorflow/tfjs"
  
// Initializing a tensor of some elements
let geek = tf.tensor5d([10, 11, 12, 13, 14, 15, 16, 17],
                       [1, 2, 2, 2, 1]);
  
// Calling the .avgPool3d() function over
// the above tensor as its parameter
let outcome = tf.avgPool3d(geek, 2, 1, 'valid');
  
//Printing the result.
outcome.print();

输出:

Tensor
     [ [ [ [[13.5],]]]]

范例2:

Javascript


// Importing the tensorflow.js library
import * as tf from "@tensorflow/tfjs"
  
// Initializing a tensor of some elements
let geek = tf.tensor5d([51, 52, 53, 54], [2, 1, 1, 1, 2]);
  
// Calling the .avgPool3d() function and
 // printing the result.
tf.avgPool3d(geek, 1, 2, 'valid').print();

输出:

Tensor
  [ [ [ [[51, 52],]]],

    [ [ [[53, 54],]]]]

Referenec:https://js.tensorflow.org/api/3.6.0/#avgPool3d

相关用法


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