def __str__(self) : '''Output Layer to String.''' from nn.layer import Layer s = '' s += '\tLayer Type : ConvolutionalAutoEncoder\n' s += Layer.__str__(self) return s
def __str__(self) : '''Output Layer to String.''' s = '' s += '\tLayer Type : ContiguousLayer\n' s += Layer.__str__(self) return s
def __str__(self) : '''Output Layer to String.''' s = '' s += '\tLayer Type : ConvolutionalLayer\n' s += Layer.__str__(self) return s