ModelNodeEncoding

class ModelNodeEncoding(val nodeName: String, val tensor: Tensor)

The association of a node in a model (QNN, TFLite, etc.) computation graph and a pipeline tensor.

Parameters

nodeName

the name string in the model computation graph.

tensor

the tensor to be associated with the computation graph node. The tensor must be of the same number of values as the node's requirement in the computation graph. The tensor must be a multi-dimensional one.

Constructors

Link copied to clipboard
constructor(nodeName: String, tensor: Tensor)

Properties

Link copied to clipboard
val nodeName: String
Link copied to clipboard