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


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


Tensorflow.js是一个开放源代码库,由Google开发,用于在浏览器或节点环境中运行机器学习模型以及深度学习神经网络。

.atan2()函数用于查找指定张量输入的反正切值,并逐元素进行。此外,它还有助于广播。

用法:

tf.atan2(a, b)

Parameters: 

  • a:它是第一个张量输入,其类型可以为tf.Tensor,TypedArray或Array。
  • b:它是第二张量输入,其类型可以为tf.Tensor,TypedArray或Array,并且必须具有与a相同的数据类型。

返回值:它返回tf.Tensor对象。



范例1:在此示例中,我们定义了整数类型的输入张量,然后打印其atan2值。为了创建输入张量,我们使用.tensor1d()方法,为了打印输出,我们使用.print()方法。

Javascript


// Importing the tensorflow.js library
import * as tf from "@tensorflow/tfjs"
  
// Defining first tensor input elements
const y = tf.tensor1d([9, 10, 11, 12]);
  
// Defining second tensor input elements
const z = tf.tensor1d([13, 14, 15, 17]);
  
// Calling atan2() method and
// Printing output
(y).atan2(z).print();

输出:

Tensor
    [0.6055371, 0.6202452, 0.6327478, 0.6146573]

范例2:在此示例中,浮点类型值被视为张量输入,并且两个参数都直接传递给atan2函数。

Javascript


// Importing the tensorflow.js library 
import * as tf from "@tensorflow/tfjs"
  
// Defining float values for first tensor
var val1 = [.5, 4.9, .275];
  
// Defining float values for second tensor
var val2 = [1.5, 5.9, .775];
  
// Calling tensor1d method
const y = tf.tensor1d(val1);
const z = tf.tensor1d(val2);
  
// Calling atan2() method
var res = tf.atan2(y,z);
  
// Printing output
res.print();

输出:

Tensor
    [0.3217588, 0.6930802, 0.340989]

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

相关用法


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