未验证 提交 a794cacc 编写于 作者: J JYChen 提交者: GitHub

fix fuse_normalize not working when export model (#5106)

* fix fuse_normalize not working when export model

* fix solov2 by keeping inputs setting before building model
上级 df55cb9b
......@@ -63,9 +63,14 @@ class BaseArch(nn.Layer):
inputs_list.append(inputs)
else:
inputs_list.extend(inputs)
outs = []
for inp in inputs_list:
if self.fuse_norm:
self.inputs['image'] = (
inp['image'] * self.scale - self.mean) / self.std
self.inputs['im_shape'] = inp['im_shape']
self.inputs['scale_factor'] = inp['scale_factor']
else:
self.inputs = inp
outs.append(self.get_pred())
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册