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


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


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

.metrics.precision() 函数用于计算参考名称的期望精度。

用法:

tf.metrics.precision(yTrue, yPred)

Parameters: 

  • yTrue:它是规定的基本事实张量,它应该保持从 0 到 1 的值,它可以是 tf.Tensor 类型。
  • yPred:它是规定的预测张量,它应该保存从 0 到 1 的值,它可以是 tf.Tensor 类型。

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



范例1:

Javascript


// Importing the tensorflow.js library
import * as tf from "@tensorflow/tfjs"
  
// Defining truth and prediction tensors
const y = tf.tensor2d([[0, 1], [1, 1]]);
const z = tf.tensor2d([[1, 0], [0, 1]]);
  
// Calling metrics.precision() method
const pre = tf.metrics.precision(y, z);
  
// Printing output
pre.print();

输出:

Tensor
    0.5

范例2:

Javascript


// Importing the tensorflow.js library
import * as tf from "@tensorflow/tfjs"
  
// Calling metrics.precision() method with
// its parameter directly and then 
// Printing output
const output = tf.metrics.precision(tf.tensor(
    [
      [0, 1, 0, 0],
      [0, 1, 1, 0],
      [0, 0, 0, 1],
      [1, 1, 0, 0],
      [0, 0, 1, 0]
    ]
), tf.tensor(
    [
      [0, 0, 1, 1],
      [0, 1, 1, 0],
      [0, 0, 0, 1],
      [0, 1, 0, 1],
      [1, 1, 0, 0]
    ]
)).print();

输出:

Tensor
    0.4444444477558136

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




相关用法


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