predict method

Tensor predict(
  1. Tensor input
)

Implementation

Tensor<dynamic> predict(Tensor<dynamic> input) {
  //Call simply looks if this already has been built, id yes then it calls forward. Otherwise it builds the net
  return call(input);
}