提交 cb705751 编写于 作者: S SunAhong1993

fix the scale

上级 5784b811
...@@ -697,11 +697,23 @@ class CaffeOpMapper(OpMapper): ...@@ -697,11 +697,23 @@ class CaffeOpMapper(OpMapper):
"weight_attr": False, "weight_attr": False,
"bias_attr": False, "bias_attr": False,
} }
if len(node.in_shapes[0]) == 2:
self.paddle_graph.add_layer(
"paddle.unsqueeze",
inputs={"x": input.name},
outputs=[input.name],
axis=[2,3])
self.paddle_graph.add_layer( self.paddle_graph.add_layer(
"paddle.nn.BatchNorm2D", "paddle.nn.BatchNorm2D",
inputs={"input": input.name}, inputs={"input": input.name},
outputs=layer_outputs, outputs=layer_outputs,
**layer_attrs) **layer_attrs)
if len(node.in_shapes[0]) == 2:
self.paddle_graph.add_layer(
"paddle.squeeze",
inputs={"x": node.layer_name},
outputs=[node.layer_name],
axis=[2,3])
def Scale(self, node): def Scale(self, node):
if node.data is None: if node.data is None:
...@@ -717,8 +729,13 @@ class CaffeOpMapper(OpMapper): ...@@ -717,8 +729,13 @@ class CaffeOpMapper(OpMapper):
else: else:
self.params[node.layer_name + "_cparam1"] = np.squeeze(node.data[ self.params[node.layer_name + "_cparam1"] = np.squeeze(node.data[
0]).astype("float32") 0]).astype("float32")
self.params[node.layer_name + "_cparam2"] = np.squeeze(node.data[ if not node.layer.scale_param.bias_term:
1]).astype("float32") self.params[node.layer_name + "_cparam2"] = np.zeros([
node.in_shapes[0][1],
]).astype("float32")
else:
self.params[node.layer_name + "_cparam2"] = np.squeeze(node.data[
1]).astype("float32")
params = node.layer.scale_param params = node.layer.scale_param
axis = params.axis axis = params.axis
inputs = [] inputs = []
...@@ -747,11 +764,17 @@ class CaffeOpMapper(OpMapper): ...@@ -747,11 +764,17 @@ class CaffeOpMapper(OpMapper):
inputs_dict = {} inputs_dict = {}
inputs_dict['x'] = input0_name inputs_dict['x'] = input0_name
inputs_dict['y'] = node.layer_name + "_cparam1" inputs_dict['y'] = node.layer_name + "_cparam1"
self.paddle_graph.add_layer( if len(node.in_shapes[0]) == 2:
"paddle.multiply", self.paddle_graph.add_layer(
inputs=inputs_dict, "paddle.multiply",
outputs=[node.layer_name + "_mul"], inputs=inputs_dict,
axis=axis) outputs=[node.layer_name + "_mul"])
else:
self.paddle_graph.add_layer(
"paddle.multiply",
inputs=inputs_dict,
outputs=[node.layer_name + "_mul"],
axis=axis)
self.paddle_graph.add_layer( self.paddle_graph.add_layer(
"self.create_parameter", "self.create_parameter",
inputs={}, inputs={},
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册