Updated on 2022-03-13 GMT+08:00

AITensorDescription

Provides the tensor description, mainly about the input and output information of a model. For details, see ai_types.proto.

// Tensor description
message AITensorDescription
{
    string name = 1; // Tensor name
    string type = 2; // Tensor type
    repeated string compatible_type = 3; // Specifies all types of parent classes that can be compatible.
   repeated AITensorParaDescription paras = 4; // Parameter list
};