def evaluate(self, X, Y): y = to_categorical(Y) # out = self.model.evaluate( # X, y, # batch_size=32, # show_accuracy=True, # ) return BaseKeras.evaluate(self,X,y)
def train(self, X, Y, nepochs, callbacks): y = to_categorical(Y) BaseKeras.train(self,X,y,nepochs, callbacks)