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


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


Tensorflow.js是Google开发的开源库,用于在浏览器或节点环境中运行机器学习模型和深度学习神经网络。它还可以帮助开发人员使用JavaScript语言开发ML模型,并可以直接在浏览器或Node.js中使用ML。

.array() 方法用于像嵌套数组一样返回张量输入。此外,数据的重定位是异步进行的。

用法:

array()

参数:此方法不包含任何参数。

返回值:它返回 number[] 的承诺。



范例1:

Javascript


// Importing tensorflow library
import * as tf from "@tensorflow/tfjs"
  
// Creating a tensor
const tn = tf.tensor([5, 6, 3, 4]);
  
// Calling array() method
const res = await tn.array();
  
// Printing output
console.log(res)

输出:

5,6,3,4

范例2:

Javascript


// Importing tensorflow library
import * as tf from "@tensorflow/tfjs"
  
// Calling array() method and
// Printing output
console.log(await tf.tensor2d([1.7, 3.7, 9.7, null], [4, 1]).array());

输出:

1.7000000476837158,3.700000047683716,9.699999809265137,0

参考: https://js.tensorflow.org/api/latest/#tf.Tensor.array

相关用法


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