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 Reshape::load_param(FILE* paramfp) { int nscan = fscanf(paramfp, "%d %d %d %d", &w, &h, &c, &permute);
这里应该是 int nscan = fscanf(paramfp, "%d %d %d %d", &c, &w, &h, &permute);
才对吧?
The text was updated successfully, but these errors were encountered:
你是使用的caffe转ncnn模型后遇到的问题吧?我是直接将转换好的ncnn的模型定义文件reshape层的后面三个参数手动调换位置。
Sorry, something went wrong.
还有,就是这个读取的4个数,但是txt里面只有三个额,奇怪的是ubuntu和android下运行没问题。不过放到win(uwp开发)下到这一步就出错,不知道为什么
195193f
手头没有 reshape 的模型可以测试,尚不清楚有没有修复 =_= 最后一个数字代表是否要进行 CHW -> HWC 的转换,只实现了 reshape 成一维的情况,适用在 tensorflow ...
Merge pull request #111 from qaz734913414/patch-1
0b790ae
Fix yolov4 example load model
No branches or pull requests
int Reshape::load_param(FILE* paramfp)
{
int nscan = fscanf(paramfp, "%d %d %d %d",
&w, &h, &c, &permute);
这里应该是
int nscan = fscanf(paramfp, "%d %d %d %d",
&c, &w, &h, &permute);
才对吧?
The text was updated successfully, but these errors were encountered: