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

[BUG] Elu.cpp load param #109

Closed
huanyingjun opened this issue Aug 25, 2017 · 1 comment
Closed

[BUG] Elu.cpp load param #109

huanyingjun opened this issue Aug 25, 2017 · 1 comment
Labels

Comments

@huanyingjun
Copy link

int ELU::load_param(FILE* paramfp)
{
int nscan = fscanf(paramfp, "%f", &alpha);
if (nscan != 1)
{
fprintf(stderr, "ELU load_param failed %d\n", nscan);
return -1;
}

return 0;

}

这边有读取alpha的值,但在caffe2ncnn 中没有处理这个 alpha 的值

@nihui
Copy link
Member

nihui commented Aug 25, 2017

caffe2ncnn 没转换 ELU 参数 ...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants