Exemplo n.º 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
Exemplo n.º 2
0
 def __str__(self) :
     '''Output Layer to String.'''
     s = ''
     s += '\tLayer Type         : ContiguousLayer\n'
     s += Layer.__str__(self)
     return s
Exemplo n.º 3
0
 def __str__(self) :
     '''Output Layer to String.'''
     s = ''
     s += '\tLayer Type         : ConvolutionalLayer\n'
     s += Layer.__str__(self)
     return s