コード例 #1
0
ファイル: common.py プロジェクト: yyaqi/Dragon
 def LayerSetup(self, bottom):
     return _ops.Add(bottom, **self.arguments)
コード例 #2
0
ファイル: math_ops.py プロジェクト: zhangkaij/Dragon
def add(x, y, name=None):

    return ops.Add([x, y], name=None)
コード例 #3
0
 def Setup(self, bottom):
     super(AddLayer, self).Setup(bottom)
     return ops.Add(bottom, **self._param)