Skip to content

Commit

Permalink
Quick fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lisitsyn committed Mar 10, 2012
1 parent eee5670 commit df59536
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/shogun/machine/MulticlassMachine.cpp
Expand Up @@ -151,7 +151,7 @@ CLabels* CMulticlassMachine::classify_one_vs_rest()
for (int32_t j=0; j<num_machines; j++)
outputs_for_i[j] = outputs[j]->get_label(i);

if (m_rejection_strategy && rejection_strategy->reject(outputs_for_i))
if (m_rejection_strategy && m_rejection_strategy->reject(outputs_for_i))
{
winner=result->REJECTION_LABEL;
}
Expand Down

0 comments on commit df59536

Please sign in to comment.