apply method

TensorLabel apply(
  1. TensorBuffer buffer
)

Implementation

TensorLabel apply(TensorBuffer buffer) {
  SupportPreconditions.checkNotNull(buffer,
      message: "Tensor buffer cannot be null.");
  return TensorLabel(_axisLabels, buffer);
}