diff --git a/README.md b/README.md index e7a7f831..cf9d3989 100644 --- a/README.md +++ b/README.md @@ -4,13 +4,15 @@ ONNX.js is a Javascript library for running ONNX models on browsers and on Node. ONNX.js has adopted WebAssembly and WebGL technologies for providing an optimized ONNX model inference runtime for both CPUs and GPUs. ### Why ONNX models -The [Open Neural Network Exchange](http://onnx.ai/) (ONNX) is an open standard for representing machine learning models. The biggest advantage of ONNX is that it allows interoperability across different open source AI frameworks, which itself offers more flexibility for AI frameworks adoption. [This](#Getting-ONNX-models) is a great place to start getting acquainted with ONNX models. +The [Open Neural Network Exchange](http://onnx.ai/) (ONNX) is an open standard for representing machine learning models. The biggest advantage of ONNX is that it allows interoperability across different open source AI frameworks, which itself offers more flexibility for AI frameworks adoption. See [Getting ONNX Models](#Getting-ONNX-models). ### Why ONNX.js With ONNX.js, web developers can score pre-trained ONNX models directly on browsers with various benefits of reducing server-client communication and protecting user privacy, as well as offering install-free and cross-platform in-browser ML experience. ONNX.js can run on both CPU and GPU. For running on CPU, [WebAssembly](https://developer.mozilla.org/en-US/docs/WebAssembly) is adopted to execute model at near-native speed. Furthermore, ONNX.js utilizes [Web Workers](https://developer.mozilla.org/en-US/docs/Web/API/Web_Workers_API/Using_web_workers) to provide a "multi-threaded" environment to parallelize data processing. Empirical evaluation shows very promising performance gains on CPU by taking full advantage of WebAssembly and Web Workers. For running on GPUs, a popular standard for accessing GPU capabilities - WebGL is adopted. ONNX.js has further adopted several novel optimization techniques for reducing data transfer between CPU and GPU, as well as some techniques to reduce GPU processing cycles to further push the performance to the maximum. +See [Compatibility](#Compatibility) and [Operators Supported](#Operators) for a list of platforms and operators ONNX.js currently supports. + ### Benchmarks Benchmarks have been run against the most prominent open source solutions in the same market. Below are the results collected for Chrome and Edge browsers on one sample machine (computations run on both CPU and GPU): @@ -134,8 +136,24 @@ Learn more about ONNX - [ONNX website](http://onnx.ai/) - [ONNX on GitHub](https://github.com/onnx/onnx) -### Operators supported -The [list](./docs/operators.md) of ONNX operators supported by each of the 3 available builtin backends (cpu, wasm, and webgl). +### Compatibility +#### Desktop Platforms +| OS/Browser | Chrome | Edge | FireFox | Safari | Opera | Electron | Node.js | +|:----------:|:------:|:----:|:-------:|:------:|:-----:|:-----:|:-----:| +| Windows 10 | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | - | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | +| macOS | :heavy_check_mark: | - | :heavy_check_mark: | Coming soon | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | +| Ubuntu LTS 18.04 | :heavy_check_mark: | - | :heavy_check_mark: | - | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | + +#### Mobile Platforms +| OS/Browser | Chrome | Edge | FireFox | Safari | Opera | +|:----------:|:------:|:----:|:-------:|:------:|:-----:| +| iOS | Coming soon | - | Coming soon | Coming soon | Coming soon | +| Android | :heavy_check_mark: | :heavy_check_mark: | Coming soon | - | :heavy_check_mark: | + +### Operators +ONNX.js currently supports most operators in [ai.onnx](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md) operator set v7 (opset v7). See [operators.md](./docs/operators.md) for a complete, detailed list of which ONNX operators are supported by the 3 available builtin backends (cpu, wasm, and webgl). + +Support for [ai.onnx.ml](https://github.com/onnx/onnx/blob/master/docs/Operators-ml.md) operators is coming soon. [operators-ml.md](./docs/operators-ml.md) has the most recent status of ai.onnx.ml operators. ## Contribute We’d love to embrace your contribution to ONNX.js. Please refer to [CONTRIBUTING.md](./CONTRIBUTING.md). diff --git a/docs/operators-ml.md b/docs/operators-ml.md new file mode 100644 index 00000000..a67a5f59 --- /dev/null +++ b/docs/operators-ml.md @@ -0,0 +1,24 @@ +The following table lists the [ai.onnx.ml](https://github.com/onnx/onnx/blob/master/docs/Operators-ml.md) operators supported by each of the available backends. + +See [Compatibility](../README.md#Compatibility) for a list of the supported platforms. + +| Operator | Cpu Backend | Wasm Backend | WebGl Backend | +|:------------------------------------------------------------------------------------------------------:|:-----------:|:------------:|:-------------:| +| [ArrayFeatureExtractor](https://github.com/onnx/onnx/blob/master/docs/Operators-ml.md#ai.onnx.ml.ArrayFeatureExtractor) | | | | +| [Binarizer](https://github.com/onnx/onnx/blob/master/docs/Operators-ml.md#ai.onnx.ml.Binarizer) | | | | +| [CastMap](https://github.com/onnx/onnx/blob/master/docs/Operators-ml.md#aionnxmlcastmap) | | | | +| [CategoryMapper](https://github.com/onnx/onnx/blob/master/docs/Operators-ml.md#aionnxmlcategorymapper) | | | | +| [DictVectorizer](https://github.com/onnx/onnx/blob/master/docs/Operators-ml.md#aionnxmldictvectorizer) | | | | +| [FeatureVectorizer](https://github.com/onnx/onnx/blob/master/docs/Operators-ml.md#aionnxmlfeaturevectorizer) | | | | +| [Imputer](https://github.com/onnx/onnx/blob/master/docs/Operators-ml.md#aionnxmlimputer) | | | | +| [LabelEncoder](https://github.com/onnx/onnx/blob/master/docs/Operators-ml.md#aionnxmllabelencoder) | | | | +| [LinearClassifier](https://github.com/onnx/onnx/blob/master/docs/Operators-ml.md#aionnxmllinearclassifier) | | | | +| [LinearRegressor](https://github.com/onnx/onnx/blob/master/docs/Operators-ml.md#aionnxmllinearregressor) | | | | +| [Normalizer](https://github.com/onnx/onnx/blob/master/docs/Operators-ml.md#aionnxmlnormalizer) | | | | +| [OneHotEncoder](https://github.com/onnx/onnx/blob/master/docs/Operators-ml.md#aionnxmlonehotencoder) | | | | +| [SVMClassifier](https://github.com/onnx/onnx/blob/master/docs/Operators-ml.md#aionnxmlsvmclassifier) | | | | +| [SVMRegressor](https://github.com/onnx/onnx/blob/master/docs/Operators-ml.md#aionnxmlsvmregressor) | | | | +| [Scaler](https://github.com/onnx/onnx/blob/master/docs/Operators-ml.md#aionnxmlscaler) | | | | +| [TreeEnsembleClassifier](https://github.com/onnx/onnx/blob/master/docs/Operators-ml.md#aionnxmltreeensembleclassifier) | | | | +| [TreeEnsembleRegressor](https://github.com/onnx/onnx/blob/master/docs/Operators-ml.md#aionnxmltreeensembleregressor) | | | | +| [ZipMap](https://github.com/onnx/onnx/blob/master/docs/Operators-ml.md#aionnxmlzipmap) | | | | diff --git a/docs/operators.md b/docs/operators.md index 07b73393..2f6869fd 100644 --- a/docs/operators.md +++ b/docs/operators.md @@ -1,64 +1,64 @@ -The following table lists the ONNX operators supported by each of the available backends. +The following table lists the [ai.onnx](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md) operators supported by each of the available backends. -The supported platforms are Windows 10 + Edge/Chrome/Firefox/Electron/Node.js. +See [Compatibility](../README.md#Compatibility) for a list of the supported platforms. | Operator | Cpu Backend | Wasm Backend | WebGl Backend | |:------------------------------------------------------------------------------------------------------:|:-----------:|:------------:|:-------------:| -| [Abs](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Abs) | x | | x | -| [Acos](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Acos) | x | | x | -| [Add](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Add) | x | | x | -| [And](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#And) | x | | x | -| [Asin](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Asin) | x | | x | -| [Atan](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Atan) | x | | x | -| [AveragePool](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#AveragePool) | x | x | x | -| [BatchNormalization](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#BatchNormalization) | x | x | x | -| [Ceil](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Ceil) | x | | x | -| [Concat](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Concat) | x | | x | -| [Constant](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Constant) | x | x | x | -| [Conv](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Conv) | x | x | x | -| [Cos](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Cos) | x | | x | -| [Div](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Div) | x | | x | -| [Dropout](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Dropout) | x | x | x | -| [Equal](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Equal) | | | x | -| [Exp](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Exp) | x | | x | -| [Floor](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Floor) | x | | x | -| [Gemm](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Gemm) | | x | x | -| [GlobalAveragePool](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#GlobalAveragePool) | x | x | x | -| [GlobalMaxPool](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#GlobalMaxPool) | x | x | x | -| [Greater](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Greater) | | | x | -| [Identity](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Identity) | x | x | x | -| [ImageScaler](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#ImageScaler) | x | | x | -| [LeakyRelu](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#LeakyRelu) | x | | x | -| [Less](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Less) | | | x | -| [Log](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Log) | x | | x | -| [LRN](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#LRN) | x | | | -| [MatMul](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#MatMul) | x | | x | -| [MaxPool](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#MaxPool) | x | x | x | -| [Mul](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Mul) | x | | x | -| [Neg](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Neg) | x | | x | -| [Not](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Not) | | | x | -| [Or](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Or) | x | | x | -| [Pad](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Pad) | | | x | -| [Pow](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Pow) | | | x | -| [PRelu](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#PRelu) | x | | x | -| [ReduceLogSum](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#ReduceLogSum) | x | | | -| [ReduceMax](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#ReduceMax) | x | | | -| [ReduceMean](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#ReduceMean) | x | | | +| [Abs](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Abs) | :heavy_check_mark: | | :heavy_check_mark: | +| [Acos](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Acos) | :heavy_check_mark: | | :heavy_check_mark: | +| [Add](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Add) | :heavy_check_mark: | | :heavy_check_mark: | +| [And](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#And) | :heavy_check_mark: | | :heavy_check_mark: | +| [Asin](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Asin) | :heavy_check_mark: | | :heavy_check_mark: | +| [Atan](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Atan) | :heavy_check_mark: | | :heavy_check_mark: | +| [AveragePool](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#AveragePool) | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | +| [BatchNormalization](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#BatchNormalization) | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | +| [Ceil](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Ceil) | :heavy_check_mark: | | :heavy_check_mark: | +| [Concat](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Concat) | :heavy_check_mark: | | :heavy_check_mark: | +| [Constant](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Constant) | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | +| [Conv](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Conv) | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | +| [Cos](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Cos) | :heavy_check_mark: | | :heavy_check_mark: | +| [Div](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Div) | :heavy_check_mark: | | :heavy_check_mark: | +| [Dropout](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Dropout) | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | +| [Equal](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Equal) | | | :heavy_check_mark: | +| [Exp](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Exp) | :heavy_check_mark: | | :heavy_check_mark: | +| [Floor](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Floor) | :heavy_check_mark: | | :heavy_check_mark: | +| [Gemm](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Gemm) | | :heavy_check_mark: | :heavy_check_mark: | +| [GlobalAveragePool](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#GlobalAveragePool) | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | +| [GlobalMaxPool](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#GlobalMaxPool) | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | +| [Greater](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Greater) | | | :heavy_check_mark: | +| [Identity](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Identity) | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | +| [ImageScaler](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#ImageScaler) | :heavy_check_mark: | | :heavy_check_mark: | +| [LeakyRelu](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#LeakyRelu) | :heavy_check_mark: | | :heavy_check_mark: | +| [Less](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Less) | | | :heavy_check_mark: | +| [Log](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Log) | :heavy_check_mark: | | :heavy_check_mark: | +| [LRN](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#LRN) | :heavy_check_mark: | | | +| [MatMul](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#MatMul) | :heavy_check_mark: | | :heavy_check_mark: | +| [MaxPool](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#MaxPool) | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | +| [Mul](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Mul) | :heavy_check_mark: | | :heavy_check_mark: | +| [Neg](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Neg) | :heavy_check_mark: | | :heavy_check_mark: | +| [Not](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Not) | | | :heavy_check_mark: | +| [Or](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Or) | :heavy_check_mark: | | :heavy_check_mark: | +| [Pad](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Pad) | | | :heavy_check_mark: | +| [Pow](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Pow) | | | :heavy_check_mark: | +| [PRelu](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#PRelu) | :heavy_check_mark: | | :heavy_check_mark: | +| [ReduceLogSum](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#ReduceLogSum) | :heavy_check_mark: | | | +| [ReduceMax](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#ReduceMax) | :heavy_check_mark: | | | +| [ReduceMean](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#ReduceMean) | :heavy_check_mark: | | | | [ReduceMin](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#AReduceMin) | | | | | [ReduceProd](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#AReduceProd) | | | | | [ReduceSum](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#AReduceSum) | | | | | [ReduceSumSquare](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#AReduceSumSquare) | | | | -| [Relu](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Relu) | x | | x | -| [Reshape](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Reshape) | x | | x | -| [Sigmoid](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Sigmoid) | x | | x | -| [Sin](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Sin) | x | | x | -| [Softmax](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Softmax) | x | x | x | -| [Split](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Split) | | | x | -| [Sqrt](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Sqrt) | x | | x | -| [Sub](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Sub) | x | | x | -| [Sum](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Sum) | x | x | x | -| [Tan](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Tan) | x | | x | -| [Tanh](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Tanh) | x | | | -| [Transpose](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Transpose) | x | | x | -| [Unsqueeze](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Unsqueeze) | x | | | -| [Xor](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Xor) | x | | x | +| [Relu](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Relu) | :heavy_check_mark: | | :heavy_check_mark: | +| [Reshape](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Reshape) | :heavy_check_mark: | | :heavy_check_mark: | +| [Sigmoid](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Sigmoid) | :heavy_check_mark: | | :heavy_check_mark: | +| [Sin](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Sin) | :heavy_check_mark: | | :heavy_check_mark: | +| [Softmax](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Softmax) | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | +| [Split](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Split) | | | :heavy_check_mark: | +| [Sqrt](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Sqrt) | :heavy_check_mark: | | :heavy_check_mark: | +| [Sub](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Sub) | :heavy_check_mark: | | :heavy_check_mark: | +| [Sum](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Sum) | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | +| [Tan](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Tan) | :heavy_check_mark: | | :heavy_check_mark: | +| [Tanh](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Tanh) | :heavy_check_mark: | | | +| [Transpose](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Transpose) | :heavy_check_mark: | | :heavy_check_mark: | +| [Unsqueeze](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Unsqueeze) | :heavy_check_mark: | | | +| [Xor](https://github.com/onnx/onnx/blob/rel-1.2.3/docs/Operators.md#Xor) | :heavy_check_mark: | | :heavy_check_mark: |