ModelDesc
Description
Defines the model description information.
Structure Definition
1 2 3 4 5 6 | struct ModelDesc { std::vector<TensorDesc> inputTensors; std::vector<TensorDesc> outputTensors; std::vector<size_t> batchSizes; bool dynamicBatch; }; |
Parameters
Parameter |
Input/Output |
Description |
|---|---|---|
inputTensors |
Output |
Input tensor description |
outputTensors |
Output |
Output tensor description |
batchSizes |
Output |
Batch size |
dynamicBatch |
Output |
Whether a batch is a dynamic batch. |
Parent topic: General Data Structures