|
地板
楼主 |
发表于 2021-10-8 20:44:20
|
只看该作者
通过查看量化后生成的的json文件,
"Reshape_Reshape_199_52": {
"name": "Reshape_Reshape_199",
"op": "reshape",
"parameters": {
"shape": [
3,
16,
-1
]
},
"inputs": [
"@Reshape_Reshape_199_52_acuity_mark_perm_211ut0"
],
"outputs": [
"out0"
]
},
这里的parameters:是3,16,-1
网络里有个188节点和199在原onnx模型的参数是一样的,这里188节点转换后的parameters是正常的1,16,-1
"Reshape_Reshape_188_74": {
"name": "Reshape_Reshape_188",
"op": "reshape",
"parameters": {
"shape": [
1,
16,
-1
]
}, |
|