当前位置: 代码迷 >> 综合 >> mxnet simple_bind error inconsistent shape
  详细解决方案

mxnet simple_bind error inconsistent shape

热度:64   发布时间:2023-12-15 16:28:09.0

构建模型后bind出错,提示shape不对。

Error in operator fullyconnected0: Shape inconsistent, Provided=[1024,xxx], inferred shape=(1024,xxx)

Provided: 模型中定义的
inferred: 实际运行时产生的(可能infer的时候你才知道是多少)
可能你给网络层定义了权重,是权重的shape不对导致的。那就调整网络层权重的shape,保证provide和infer的shape中第二位的xxx保持一致。

mxnet infer shape: https://blog.csdn.net/qxqxqzzz/article/details/106423811#41_shape_infer_shape_symbol_92

  相关解决方案