Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ArgMaxLayer, if(out_max_val == true) should output index first and then output max value #166

Open
robotcn opened this issue Oct 24, 2017 · 0 comments

Comments

@robotcn
Copy link

robotcn commented Oct 24, 2017

if (out_max_val)
{
    float* valptr = outptr + topk;
    for (int i=0; i<topk; i++)
    {
        **outptr[i] = vec[i].first;        ---> outptr[i] = vec[i].second
        valptr[i] = vec[i].second;    ---> valptr[i] = vec[i].first**
    }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant