public interface
TensorOperator
Known Indirect Subclasses
CastOp
,
DequantizeOp
,
NormalizeOp
,
QuantizeOp
CastOp
Casts a
TensorBuffer
to a specified data type.
DequantizeOp
Dequantizes a
TensorBuffer
with given
zeroPoint
and
scale
.
NormalizeOp
Normalizes a
TensorBuffer
with given mean and stddev: output = (input - mean) / stddev.
QuantizeOp
Quantizes a
TensorBuffer
with given
zeroPoint
and
scale
.
Applies some operation on TensorBuffers.
Public Methods
abstract
TensorBuffer
apply
(
TensorBuffer
input)
Inherited Methods
From interface
org.tensorflow.lite.support.common.Operator
abstract
TensorBuffer
apply
(
TensorBuffer
x)
Applies an operation on a T object, returning a T object.
Public Methods
public abstract
TensorBuffer
apply
(
TensorBuffer
input)
Parameters
input
See Also
.