📜  Tensorflow.js tf.logicalAnd()函数

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

Tensorflow.js tf.logicalAnd()函数

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

tf.logicalAnd()函数用于返回一个布尔值张量,用于对两个指定的布尔值张量进行元素与运算的结果。

句法:

tf.logicalAnd(a, b)

参数:此函数接受两个参数,如下所示:

  • a:第一个输入张量。它应该有一个布尔数据类型。
  • b:第二个输入张量。它应该有一个布尔数据类型。

返回值:它返回一个布尔值张量,用于对两个指定的布尔值张量进行元素与运算的结果。

示例 1:

Javascript
// Importing the tensorflow.js library
import * as tf from "@tensorflow/tfjs"
  
// Initializing two different tensors of Boolean values
const a = tf.tensor1d([true, false, false, true], 'bool');
const b = tf.tensor1d([false, false, true, true], 'bool');
  
// Calling the .logicalAnd() function
a.logicalAnd(b).print();


Javascript
// Importing the tensorflow.js library
import * as tf from "@tensorflow/tfjs"
  
// Using two different tensors of Boolean values
// as the parameters of .logicalAnd() function
tf.tensor1d([true, true, false, true], 'bool').
logicalAnd(tf.tensor1d([true, false, false, true], 
           'bool')).print();


输出:

Tensor
   [false, false, false, true]

示例 2:

Javascript

// Importing the tensorflow.js library
import * as tf from "@tensorflow/tfjs"
  
// Using two different tensors of Boolean values
// as the parameters of .logicalAnd() function
tf.tensor1d([true, true, false, true], 'bool').
logicalAnd(tf.tensor1d([true, false, false, true], 
           'bool')).print();

输出:

Tensor
    [true, false, false, true]

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