The Xentara ONNX Engine v2.0
User Manual
JSON Format for ONNX Engine Output

A JSON object describing a Output has following syntax:

{
"name": "output",
"dataType": "FLOAT"
}

Object Members
nameA string value containing the name of the selected output of the model.
dataTypeA string value containing the data type of the model.
  • FLOAT Defines input as float 32bit.
  • DOUBLE Defines input as float 64bit.
  • INT8 Defines input as signed integer 8bit.
  • INT16 Defines input as signed integer 16bit.
  • INT32 Defines input as signed integer 32bit.
  • INT64 Defines input as signed integer 64bit.
  • UINT8 Defines input as unsigned integer 8bit.
  • UINT16 Defines input as unsigned integer 16bit.
  • UINT32 Defines input as unsigned integer 32bit.
  • UINT64 Defines input as unsigned integer 64bit.
  • BOOL Defines input as Boolean value.

Please remember that each element block requires two layers of {} due to the syntax restrictions of the JSON format.