We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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 的值
The text was updated successfully, but these errors were encountered:
caffe2ncnn 没转换 ELU 参数 ...
Sorry, something went wrong.
a638cf6
convert ELU parameter, fix Tencent#109
f17ce09
Merge pull request #109 from Tencent/master
6eb35f1
20200831
No branches or pull requests
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;
}
}
这边有读取alpha的值,但在caffe2ncnn 中没有处理这个 alpha 的值
The text was updated successfully, but these errors were encountered: