This website works better with JavaScript.
Home
Issues
Pull Requests
Milestones
AI流水线
Repositories
Datasets
Forum
实训
竞赛
大数据
AI开发
Register
Sign In
nihui
/
ncnn
Not watched
Unwatch
Watch all
Watch but not notify
1
Star
0
Fork
0
Code
Releases
46
Wiki
evaluate
Activity
Issues
0
Pull Requests
0
Datasets
Model
Cloudbrain
HPC
Browse Source
fix default concat dim
tags/20180314
nihuini
8 years ago
parent
e2b11f3b91
commit
f4f5a96b9f
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
tools/mxnet/mxnet2ncnn.cpp
+ 1
- 1
tools/mxnet/mxnet2ncnn.cpp
View File
@@ -1111,7 +1111,7 @@ int main(int argc, char** argv)
}
else if (n.op == "Concat")
{
int dim = n.attr("dim");
int dim = n.
has_
attr("dim")
? n.attr("dim") : 1
;
fprintf(pp, " 0=%d", dim-1);
}
else if (n.op == "Convolution")
Write
Preview
Loading…
Cancel
Save