Open Neural Network Exchange (ONNX), typically pronounced as on-niks, is a format to represent a computation graph, with support for a wide variety of operators and data types. This format is general enough to support both neural networks and traditional ML models. Started by Facebook and Microsoft, this format has quickly gained a reputation as a popular format for the export and import of deep neural networks among most DL frameworks.
Open Neural Network Exchange
Installing ONNX
The ONNX source code can be found online at: https://github.com/onnx/onnx This includes definitions of the format and scripts to operate on ONNX files. Libraries and tools to convert from and to specific DL framework formats are usually provided...