提交 880774d1 编写于 作者: H Haonan

change the act.name for LinearActivation() to "linear" so that it won't

fail in hl_activetype; also fix the hasinputsset in submodel
上级 8d4c453b
...@@ -218,7 +218,7 @@ def Inputs(*args): ...@@ -218,7 +218,7 @@ def Inputs(*args):
@config_func @config_func
def HasInputsSet(): def HasInputsSet():
return len(g_config.model_config.input_layer_names) != 0 return len(g_current_submodel.input_layer_names) != 0
# Define the name of the output layers of the NeuralNetwork. # Define the name of the output layers of the NeuralNetwork.
......
...@@ -104,7 +104,7 @@ class IdentityActivation(BaseActivation): ...@@ -104,7 +104,7 @@ class IdentityActivation(BaseActivation):
Just do nothing for output both forward/backward. Just do nothing for output both forward/backward.
""" """
def __init__(self): BaseActivation.__init__(self, '', False) def __init__(self): BaseActivation.__init__(self, 'linear', False)
LinearActivation = IdentityActivation LinearActivation = IdentityActivation
......
...@@ -1657,7 +1657,7 @@ def img_pool_layer(input, pool_size, name=None, ...@@ -1657,7 +1657,7 @@ def img_pool_layer(input, pool_size, name=None,
:type pool_size_y: int|None :type pool_size_y: int|None
:param num_channels: number of input channel. :param num_channels: number of input channel.
:type num_channels: int :type num_channels: int
:param pool_type: pooling type. MaxPooling or AveragePooling. Default is :param pool_type: pooling type. MaxPooling or AvgPooling. Default is
MaxPooling. MaxPooling.
:type pool_type: BasePoolingType :type pool_type: BasePoolingType
:param stride: stride width of pooling. :param stride: stride width of pooling.
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册