Software:Open Neural Network Exchange

From HandWiki
(Redirected from Onnx)
Open Neural Network Exchange (ONNX)
Open Neural Network Exchange logo.svg
Original author(s)Facebook, Microsoft
Developer(s)Linux Foundation
Initial releaseSeptember 2017; 6 years ago (2017-09)
Written inC++, Python
Operating systemWindows, Linux
TypeArtificial intelligence ecosystem
Licenseinitially MIT License;
later changed to Apache License 2.0

The Open Neural Network Exchange (ONNX) [ˈɒnɪks][1] is an open-source artificial intelligence ecosystem[2] of technology companies and research organizations that establish open standards for representing machine learning algorithms and software tools to promote innovation and collaboration in the AI sector. ONNX is available on GitHub.

History

ONNX was originally named Toffee[3] and was developed by the PyTorch team at Facebook.[4] In September 2017 it was renamed to ONNX and announced by Facebook and Microsoft.[5] Later, IBM, Huawei, Intel, AMD, Arm and Qualcomm announced support for the initiative.[2]

In October 2017, Microsoft announced that it would add its Cognitive Toolkit and Project Brainwave platform to the initiative.[2]

In November 2019 ONNX was accepted as graduate project in Linux Foundation AI.[6]

In October 2020 Zetane Systems became a member of the ONNX ecosystem.[7]

Intent

The initiative targets:

Framework interoperability

Allow developers to more easily move between frameworks, some of which may be more desirable for specific phases of the development process, such as fast training, network architecture flexibility or inferencing on mobile devices.[5]

Shared optimization

Allow hardware vendors and others to improve the performance of artificial neural networks of multiple frameworks at once by targeting the ONNX representation.[5]

Contents

ONNX provides definitions of an extensible computation graph model, built-in operators and standard data types, focused on inferencing (evaluation).[5]

Each computation dataflow graph is a list of nodes that form an acyclic graph. Nodes have inputs and outputs. Each node is a call to an operator. Metadata documents the graph. Built-in operators are to be available on each ONNX-supporting framework.[5]

See also

References

External links