Ejemplo n.º 1
0
 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)
Ejemplo n.º 2
0
 def train(self, X, Y, nepochs, callbacks):
     
     y = to_categorical(Y)
     BaseKeras.train(self,X,y,nepochs, callbacks)