⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 accuracyhist.m.svn-base

📁 a function inside machine learning
💻 SVN-BASE
字号:
function acc = accuracyHist(trueY, predictedY, ranking) 
%Compute the histogram of accuracies for a set of multi label binary
%predictions. First column is the frequency in each bin and the second is
%the bin centre. 

if (nargin < 2)
    fprintf('%s\n', help(sprintf('%s', mfilename)));
    error('Incorrect number of inputs - see above usage instructions.');
end

[numExamples, numLabels] = size(trueY);
acc = histc(full(sum(trueY == predictedY, 2)/numLabels), (1:numLabels)'/numLabels);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -