mirror of
https://github.com/zebrajr/pytorch.git
synced 2025-12-07 12:21:27 +01:00
Summary: Remove the use of `NextName` in layer model helper, so that the same function return `model_helper` that should construct identical `Net`, when under the same NameScope. The `NextScopedBlob` should only take effect when there is real name conflicting, otherwise it returns ScopedBlobReference. This is critical for parameter blobs. In long run, we need to be able to specify parameter blobs more explicitly. (kennyhorror is working on this). This solution works in short term for e.g., two tower sparse nn models. Reviewed By: kennyhorror Differential Revision: D4555423 fbshipit-source-id: 2c4b99a61392e5d51aa878f7346466a8f14be187
57 lines
2.0 KiB
Python
57 lines
2.0 KiB
Python
from __future__ import absolute_import
|
|
from __future__ import division
|
|
from __future__ import print_function
|
|
from __future__ import unicode_literals
|
|
|
|
from caffe2.python import core, schema
|
|
from caffe2.python.layers.layers import (
|
|
ModelLayer,
|
|
)
|
|
import numpy as np
|
|
|
|
|
|
class Concat(ModelLayer):
|
|
|
|
def __init__(self, model, input_record, axis=1,
|
|
name='concat', **kwargs):
|
|
super(Concat, self).__init__(model, name, input_record, **kwargs)
|
|
self.axis = axis
|
|
assert isinstance(input_record, schema.Struct),\
|
|
"Incorrect input type. Excpected Struct, but received: {0}".\
|
|
format(input_record)
|
|
|
|
shapes = []
|
|
for field_name, field_type in input_record.fields.items():
|
|
assert isinstance(field_type, schema.Scalar),\
|
|
"Incorrect input type for {}. Excpected Scalar, but got: {}".\
|
|
format(field_name, field_type)
|
|
# Assume that first dimension is batch, so actual axis in shape is
|
|
# axis - 1
|
|
assert len(field_type.field_type().shape) >= axis,\
|
|
"Concat expects that limited dimensions of the input tensor"
|
|
shapes.append(list(field_type.field_type().shape))
|
|
|
|
concat_dim = 0
|
|
for shape in shapes:
|
|
concat_dim += shape[axis - 1]
|
|
shape[axis - 1] = 0
|
|
assert shape == shapes[0],\
|
|
"Shapes {0} and {1} are not compatible for Concat".\
|
|
format(shape, shapes[0])
|
|
output_dims = shapes[0]
|
|
output_dims[axis - 1] = concat_dim
|
|
|
|
self.output_schema = schema.Scalar(
|
|
(np.float32, output_dims),
|
|
model.net.NextScopedBlob(name + '_output'))
|
|
|
|
def add_ops(self, net):
|
|
net.Concat(
|
|
self.input_record.field_blobs(),
|
|
[
|
|
self.output_schema.field_blobs()[0],
|
|
("_" + self.output_schema.field_blobs()[0] + "_concat_dims")
|
|
],
|
|
axis=self.axis,
|
|
)
|