コード例 #1
0
 public RBM0Input(IBatchGenerator generator, int batchSize, int patchWidth, int patchHeight)
 {
     this.generator = generator;
     this.batchSize = batchSize;
     this.patchHeight = patchWidth;
     this.patchWidth = patchWidth;
 }
コード例 #2
0
 public RBM2Input(IBatchGenerator generator, int batchSize, int patchWidth, int patchHeight, RBM rbm0, RBM rbm1)
 {
     this.generator = generator;
     this.batchSize = batchSize;
     this.patchHeight = patchWidth;
     this.patchWidth = patchWidth;
     this.rbm0 = rbm0;
     this.rbm1 = rbm1;
 }