Skip to content
Snippets Groups Projects
Commit 78d65254 authored by Julien Michel's avatar Julien Michel
Browse files

BUG: Inversion in confusion matrix

parent 70c8ea83
No related branches found
No related tags found
No related merge requests found
......@@ -101,7 +101,7 @@ ConfusionMatrixCalculator<TRefListLabel, TProdListLabel>
int prodPos = m_MapOfClasses[prodLabel];
++samplesPerClass[refPos];
m_ConfusionMatrix(refPos, prodPos) += 1;
m_ConfusionMatrix(prodPos, refPos) += 1;
++refIterator;
++prodIterator;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment