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


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


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

tf.metrics.categoricalAccuracy()函数用于返回两个张量之间的分类精度。它需要两个张量作为参数。

用法:

tf.metrics.categoricalAccuracy(a, b);

Parameters: 

  • a:第一个指定的张量。
  • b:第二个指定的张量。它必须具有与“a”相同的数据类型。

返回值:它返回两个指定张量“a”和“b”的分类精度。



范例1:

Javascript


// Importing the tensorflow library
import * as tf from "@tensorflow/tfjs"
  
// Initializing two tensors
const a = tf.tensor2d([[1, 0, 0, 1], [0, 1, 0, 1]]);
const b = tf.tensor2d([
    [0.1, 0.6, 0.01, 0.05], 
    [0.1, 0.02, 0.05, 0.3]
]);
  
// Calling the .categoricalAccuracy() function
const accuracy = tf.metrics.categoricalAccuracy(a, b);
  
// Print tensor 
accuracy.print();

输出:

Tensor
    [0, 0]

范例2:

Javascript


// Importing the tensorflow library
import * as tf from "@tensorflow/tfjs"
  
// Initializing two tensors
const a = tf.tensor([1, 0, 0, 1]);
const b = tf.tensor([1, 0.6, 0.01, 0.05]);
  
// Calling the .categoricalAccuracy() function
const accuracy = tf.metrics.categoricalAccuracy(a, b);
  
// Print tensor 
accuracy.print();

输出:

Tensor
    1

范例3:

Javascript


// Importing the tensorflow library
import * as tf from "@tensorflow/tfjs"
  
// Initializing two tensors
const a = tf.tensor([0, 0, 0, 1]);
const b = tf.tensor([0.1, 0.8, 0.05, 0.05]);
  
// Calling the .categoricalAccuracy() function
const accuracy = tf.metrics.categoricalAccuracy(a, b);
  
// Print tensor 
accuracy.print();

输出:

Tensor
    0

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

相关用法


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