Tensorflow.js tf.imag()函数
Tensorflow.js 是一个由谷歌开发的开源库,用于在浏览器或节点环境中运行机器学习模型以及深度学习神经网络。
.imag()函数用于查找所述复数或实张量输入的虚部。此外,如果所述张量输入是实数,则没有虚部,因此将全零张量作为输出返回。
句法 :
tf.imag(input)
参数:
- input:指定的张量输入,可以是 tf.Tensor、TypedArray 或 Array 类型。
返回值:它返回 tf.Tensor 对象。
示例 1:
Javascript
// Importing the tensorflow.js library
import * as tf from "@tensorflow/tfjs"
// Defining tensor input elements
const y = tf.complex([-21, 30], [14, 5]);
// Calling imag() method and
// Printing output
tf.imag(y).print();
Javascript
// Importing the tensorflow.js library
import * as tf from "@tensorflow/tfjs"
// Calling imag() method and
// Printing output
tf.imag(tf.complex([-2.1, 3.0], [1.65, 57.5])).print();
输出:
Tensor
[14, 5]
示例 2:
Javascript
// Importing the tensorflow.js library
import * as tf from "@tensorflow/tfjs"
// Calling imag() method and
// Printing output
tf.imag(tf.complex([-2.1, 3.0], [1.65, 57.5])).print();
输出:
Tensor
[1.65, 57.5]
参考: https://js.tensorflow.org/api/latest/#imag