📜  Tensorflow.js tf.unstack()函数

📅  最后修改于: 2022-05-13 01:56:19.903000             🧑  作者: Mango

Tensorflow.js tf.unstack()函数

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

tf.unstack()函数用于将 tf,tensor 解栈为 r-1 秩 tf.tensor。

句法:

tf.stack(x, axis)

参数:

  • x:张量对象。
  • axis:是unstack沿的一个轴。

返回值:返回 tf.Tensor[]

示例 1:

Javascript
// Importing the tensorflow.js library
import * as tf from "@tensorflow/tfjs"
  
// Creating a tensor2d
const a = tf.tensor2d([1, 2, 3, 4], [2, 2]);
  
// Printing the tensor
tf.unstack(a).forEach(tensor => tensor.print());


Javascript
// Importing the tensorflow.js library
import * as tf from "@tensorflow/tfjs"
  
// Creating tensor2d
const b = tf.tensor2d([1, 2, 3, 5, 8, 13, 21, 34, 55], [3, 3]);
  
// Printing the tensor
tf.unstack(b).forEach(tensor => tensor.print());


输出:

Tensor
    [1, 2]
Tensor
    [3, 4]

示例 2:

Javascript

// Importing the tensorflow.js library
import * as tf from "@tensorflow/tfjs"
  
// Creating tensor2d
const b = tf.tensor2d([1, 2, 3, 5, 8, 13, 21, 34, 55], [3, 3]);
  
// Printing the tensor
tf.unstack(b).forEach(tensor => tensor.print());

输出:

Tensor
    [1, 2, 3]
Tensor
    [5, 8, 13]
Tensor
    [21, 34, 55]

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