Function: get_output_name_by_index
C Prototype |
const char *aclmdlGetOutputNameByIndex(const aclmdlDesc *modelDesc, size_t index) |
|---|---|
Python Function |
output_name = acl.mdl.get_output_name_by_index(model_desc, index) |
Function Usage |
Obtains the output operator name, operator output edge index, top name, or output name of an output based on the model description. |
Input Description |
model_desc: int, pointer address of the data of the aclmdlDesc type. Call acl.mdl.create_desc to create data of the aclmdlDesc type in advance. index: int, sequence number of the input to be obtained, starting from 0. |
Return Value |
output_name: str, output name. The output operator name, operator output edge index, and top name or output name are returned. The format of the return value obtained by calling this API varies according to the original network and modeling method.
|
Restrictions |
None |