pytorch/caffe2/python/layers/dot_product.py
Xianjie Chen d0621a2449 NextScopedBlob with well-defined behavior and respect namescope
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
2017-02-16 17:16:36 -08:00

37 lines
1.3 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,
)
class DotProduct(ModelLayer):
def __init__(self, model, input_record, name='dot_product', **kwargs):
super(DotProduct, self).__init__(model, name, input_record, **kwargs)
assert isinstance(input_record, schema.Struct),\
"Incorrect input type. Excpected Struct, but received: {0}".\
format(input_record)
assert len(input_record.get_children()) == 2, (
"DotProduct accept 2 inputs")
assert len(set(input_record.field_types())) == 1, (
"Inputs should be of the same field type")
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)
self.output_schema = schema.Scalar(
(input_record.field_types()[0].base, ()),
model.net.NextScopedBlob(name + '_output'))
def add_ops(self, net):
net.DotProduct(
self.input_record.field_blobs(),
self.output_schema(),
)