def __init__(self, numpy_rng, theano_rng=None,
              input=None,
              n_visible=784, n_hidden=500,
              W=None, bhid=None, bvis=None):
     Autoencoder.__init__(self, numpy_rng, theano_rng,
                          input, n_visible, n_hidden,
                          W, bhid, bvis)
Beispiel #2
0
 def __init__(self,
              numpy_rng,
              theano_rng=None,
              input=None,
              n_visible=784,
              n_hidden=500,
              W=None,
              bhid=None,
              bvis=None):
     Autoencoder.__init__(self, numpy_rng, theano_rng, input, n_visible,
                          n_hidden, W, bhid, bvis)
Beispiel #3
0
 def __init__(self, input_shape, log_dir):
     self.input_shape = input_shape
     self.log_dir = log_dir
     Autoencoder.__init__(self, input_shape, log_dir)