• 大小: 643B
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-05-05
  • 语言: Matlab
  • 标签: matlab  

资源简介

matlab实现的计算但标签分类聚类准确率的计算代码。函数包含两个参数groundtruth以及分类/聚类模型给出的预测标签向量

资源截图

代码片段和文件信息

function r = acc(label result)
% Clustering Accuracy

    n = length(label);
    difference = abs(label - result);
    idx = find(difference ~= 0);
    r = 1 - length(idx)/n;
    
end

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        192  2017-12-31 20:38  acc.m

     文件        750  2017-12-31 20:38  accuracy.m

----------- ---------  ---------- -----  ----

                  942                    2


评论

共有 条评论