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


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


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

tf.metrics.meanAbsoluteError()用于计算平均绝对误差。平均绝对误差定义为两个张量的绝对差的平均值。其中,均值应用于特征尺寸。它需要两个张量作为参数。

mean(abs(Prediction - True))

用法:

tf.metrics.meanAbsoluteError(Tensor1, Tensor2);

Parameters: 

  • Tensor1:这是真张量。
  • Tensor2:它是预测张量。

返回值:它返回平均绝对误差的张量。



范例1:在此示例中,我们给出两个一维张量作为参数,而metrics.meanAbsoluteError函数将计算平均绝对误差并返回一个张量。

Javascript


// Importing the tensorflow library
import * as tf from "@tensorflow/tfjs"
  
// Defining the value of the tensors
const True = tf.tensor([1,2,3]);
const Prediction = tf.tensor([3,2,1]);
  
// Calculating mean absolute error
const error = tf.metrics.meanAbsoluteError(True, Prediction);
  
// Printing the tensor
error.print();

输出:

Tensor
    1.3333333730697632

范例2:在此示例中,我们给出两个2d张量作为参数,metrics.meanAbsoluteError函数将计算平均绝对误差并返回张量。

Javascript


// Importing the tensorflow library
import * as tf from "@tensorflow/tfjs"
  
// Defining the value of the tensors
const True = tf.tensor([[1,2,3],[2,4,1]]);
const Prediction = tf.tensor([[3,2,1],[5,2,1]]);
  
// Calculating mean absolute error
const error = tf.metrics.meanAbsoluteError(True, Prediction);
  
// Printing the tensor
error.print();

输出:

Tensor
    [1.3333334, 1.6666667]

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

相关用法


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