예제 #1
0
 def __init__(self, batch_size=128, iterations=32):
     BatchIterator.__init__(self, batch_size)
     self.iterations = iterations
     self.X = None
     self.y = None
     self.cidx = 0
     self.midx = 0
예제 #2
0
 def __init__(self, batch_size = 128, iterations = 32):
     BatchIterator.__init__(self, batch_size)
     self.iterations = iterations
     self.X = None
     self.y = None
     self.cidx = 0
     self.midx = 0
예제 #3
0
 def __init__(self,
              batch_size,
              shuffle=False,
              disturbLabelRate=0,
              sdWidth=30,
              sdNumber=0,
              seed=42):
     self.disturbLabelRate = disturbLabelRate
     self.sdWidth = sdWidth
     self.sdNumber = sdNumber
     BatchIterator.__init__(self, batch_size, shuffle, seed)
예제 #4
0
 def __init__(self, batch_size=128, iterations=32):
     BatchIterator.__init__(self, batch_size)
예제 #5
0
 def __init__(self, batch_size = 128):
     BatchIterator.__init__(self, batch_size)
예제 #6
0
 def __init__(self, batch_size, shuffle=False, seed=42):
     BatchIterator.__init__(self, batch_size, shuffle, seed)
예제 #7
0
파일: cnn.py 프로젝트: EricDoug/tomb
 def __init__(self, batch_size = 128, iterations = 32):
     BatchIterator.__init__(self, batch_size)