Tensorflow.js tf.notEqual()函数
Tensorflow.js是谷歌开发的一个开源库,用于在浏览器或节点环境中运行机器学习模型和深度学习神经网络。
tf.notEqual()函数用于返回布尔值的张量,即如果第一个张量的值不等于第二个张量的值则返回 false。它支持广播。
句法:
tf.notEqual(a, b)
参数:此函数接受两个参数,如下所示:
- a:第一个输入张量。
- b:第二个输入张量。它应该具有与“a”相同的数据类型。
返回值:它返回一个布尔值的张量,如果第一个张量的值不等于第二个,则返回 true,否则返回 false。
示例 1:
Javascript
// Importing the tensorflow.js library
import * as tf from "@tensorflow/tfjs"
// Initializing some tensors
const a = tf.tensor1d([1, 2, 3, 4]);
const b = tf.tensor1d([1, 4, 3, 4]);
// Calling the .notEqual() function
a.notEqual(b).print();
Javascript
// Importing the tensorflow.js library
import * as tf from "@tensorflow/tfjs"
// Using tensors of some values as
// the parameters of .notEqual() function
tf.tensor1d([0.1, 2.06, 2.1, 3.0]).notEqual(
tf.tensor1d([.1, 2.6, 2.0, 3])).print();
输出:
Tensor
[false, true, false, false]
示例 2:
Javascript
// Importing the tensorflow.js library
import * as tf from "@tensorflow/tfjs"
// Using tensors of some values as
// the parameters of .notEqual() function
tf.tensor1d([0.1, 2.06, 2.1, 3.0]).notEqual(
tf.tensor1d([.1, 2.6, 2.0, 3])).print();
输出:
Tensor
[false, true, true, false]
参考: https://js.tensorflow.org/api/latest/#notEqual