Exemplo n.º 1
0
 def predict(self, X):
     return batch_to_anysize(self.batch_size, self.predict_batch, X)
Exemplo n.º 2
0
 def predict_hidden(self, X):
     return batch_to_anysize(self.batch_size, self.fcns['predict_hidden_batch'], X)
Exemplo n.º 3
0
 def predict_convout(self, X):
     return batch_to_anysize(self.batch_size, self.fcns['predict_convout_batch'], X)
Exemplo n.º 4
0
 def predict_proba(self, X):
     return batch_to_anysize(self.batch_size, self.fcns['predict_proba_batch'], X)