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

something wrong in "weighted_softmax_loss_layer.cpp" #6

Open
yxliu-ntu opened this issue Sep 11, 2017 · 2 comments
Open

something wrong in "weighted_softmax_loss_layer.cpp" #6

yxliu-ntu opened this issue Sep 11, 2017 · 2 comments

Comments

@yxliu-ntu
Copy link

          for (int k = 0; k < dim; ++k) {
            bottom_diff[i * dim + k * inner_num_ + j] *= w;
          }

should be changed to

          for (int k = 0; k < channels; ++k) {
            bottom_diff[i * dim + k * inner_num_ + j] *= w;
          }
@JayYangSS
Copy link

@Mithril-NTU
I think it should be:

for (int k = 0; k < bottom[0]->shape(softmax_axis_); ++k) {
            bottom_diff[i * dim + k * inner_num_ + j] *= w;
          }

otherwise, there will be error: channels: undecleared identifier

@zhanglaplace
Copy link

softmax_axis_ default is 1, So the bottom[0]->shape(softmax_axis_) == channels_ 👍

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

3 participants