Skip to content

Commit

Permalink
corrected debug message
Browse files Browse the repository at this point in the history
  • Loading branch information
karlnapf committed May 25, 2012
1 parent f377998 commit 07554b5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/shogun/evaluation/CrossValidation.cpp
Expand Up @@ -290,7 +290,7 @@ float64_t CCrossValidation::evaluate_one_run()
if (io->get_loglevel()==MSG_DEBUG)
{
CMath::display_vector(inverse_subset_indices.vector,
inverse_subset_indices.vlen, "indices");
inverse_subset_indices.vlen, "training indices");
}

/* train machine on training features and remove subset */
Expand All @@ -309,8 +309,8 @@ float64_t CCrossValidation::evaluate_one_run()
SG_DEBUG("test set %d:\n", i);
if (io->get_loglevel()==MSG_DEBUG)
{
CMath::display_vector(inverse_subset_indices.vector,
inverse_subset_indices.vlen, "indices");
CMath::display_vector(subset_indices.vector,
subset_indices.vlen, "test indices");
}

/* apply machine to test features and remove subset */
Expand Down

0 comments on commit 07554b5

Please sign in to comment.