Navigation Menu

Skip to content

Commit

Permalink
Merge pull request #1 from pluskid/master
Browse files Browse the repository at this point in the history
bug fix for CLabels::set_int_labels
  • Loading branch information
pluskid committed Apr 1, 2012
2 parents 157f188 + d4c0155 commit 92508eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/shogun/features/Labels.cpp
Expand Up @@ -181,7 +181,7 @@ void CLabels::set_int_labels(SGVector<int32_t> lab)
labels = SGVector<float64_t>(lab.vlen);

for (int32_t i=0; i<lab.vlen; i++)
set_int_label(i, labels.vector[i]);
set_int_label(i, lab.vector[i]);
}

void CLabels::load(CFile* loader)
Expand Down

0 comments on commit 92508eb

Please sign in to comment.