Skip to content

Instantly share code, notes, and snippets.

@Aakash-kaushik
Created September 25, 2020 16:04
Show Gist options
  • Save Aakash-kaushik/790d6ea0c36e34819fd03ca28a8e9f87 to your computer and use it in GitHub Desktop.
Save Aakash-kaushik/790d6ea0c36e34819fd03ca28a8e9f87 to your computer and use it in GitHub Desktop.
helper function to get labels
arma::Row<size_t> getLabels(arma::mat predOut)
{
arma::Row<size_t> predLabels(predOut.n_cols);
for(arma::uword i = 0; i < predOut.n_cols; ++i)
{
predLabels(i) = predOut.col(i).index_mat() + 1;
}
return predLabels;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment