本文整理汇总了Python中chainer.function.Function方法的典型用法代码示例。如果您正苦于以下问题:Python function.Function方法的具体用法?Python function.Function怎么用?Python function.Function使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类chainer.function
的用法示例。
在下文中一共展示了function.Function方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: _get_layer_name
# 需要导入模块: from chainer import function [as 别名]
# 或者: from chainer.function import Function [as 别名]
def _get_layer_name(self, layer):
"""Generate layer name like "Convolution2DFunction-10-2".
The first number means rank of the layer (depth from the top),
and the second number is for preventing duplication
(different layer objects can have same rank)
Args:
layer (~chainer.Function_node): Function object
Returns:
str: A string to be used for the ``name`` field of the graph
in the exported Caffe model.
"""
label = '{}-{}'.format(layer.label, layer.rank)
d = self.naming_map[label]
if layer not in d.keys():
d[layer] = len(d) + 1
return '{}-{}'.format(label, d[layer])
示例2: _func_name
# 需要导入模块: from chainer import function [as 别名]
# 或者: from chainer.function import Function [as 别名]
def _func_name(func):
if isinstance(func, function.Function):
return func.__class__.__name__.lower()
else:
return func.__name__
示例3: _func_class
# 需要导入模块: from chainer import function [as 别名]
# 或者: from chainer.function import Function [as 别名]
def _func_class(func):
if isinstance(func, function.Function):
return func.__class__
else:
name = func.__name__.capitalize()
return getattr(functions, name, None)