示例#1
0
 def __str__(self) :
     '''Output Layer to String.'''
     from nn.layer import Layer
     s = ''
     s += '\tLayer Type         : ConvolutionalAutoEncoder\n'
     s += Layer.__str__(self)
     return s
示例#2
0
 def __str__(self) :
     '''Output Layer to String.'''
     s = ''
     s += '\tLayer Type         : ContiguousLayer\n'
     s += Layer.__str__(self)
     return s
示例#3
0
 def __str__(self) :
     '''Output Layer to String.'''
     s = ''
     s += '\tLayer Type         : ConvolutionalLayer\n'
     s += Layer.__str__(self)
     return s