File tree Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Expand file tree Collapse file tree 1 file changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,30 @@ Make sure that your param file starts with the magic number 7767517.
8
8
9
9
you may find more info on [ use-ncnn-with-alexnet] ( use-ncnn-with-alexnet )
10
10
11
+ If the original model is missing, you can try to manually fix the layer specific parameters in param file
12
+
13
+ 1 . ** Softmax** append ` 1=1 `
14
+
15
+ before
16
+ ```
17
+ Softmax xxx 1 1 in out ...
18
+ ```
19
+ after
20
+ ```
21
+ Softmax xxx 1 1 in out ... 1=1
22
+ ```
23
+
24
+ 2 . ** Reduction** minus all axes value by 1 (except the leading array count) and append ` 5=1 `
25
+
26
+ before
27
+ ```
28
+ Reduction xxx 1 1 in out ... -23303=2,2,3 ...
29
+ ```
30
+ after
31
+ ```
32
+ Reduction xxx 1 1 in out ... -23303=2,1,2 ... 5=1
33
+ ```
34
+
11
35
### find_blob_index_by_name XYZ failed
12
36
13
37
That means ncnn couldn't find the XYZ blob in the network.
You can’t perform that action at this time.
0 commit comments