Examples of ONNX Runtime Unity Plugin.
Yolox-Nano
NanoSAM
[!IMPORTANT]
Install Git-LFS to try this repository.
ONNX examples are available in the Assets/Examples
folder. Pull the repository and open the project in Unity.
Following demos are available:
Add the following scopedRegistries
and dependencies
in Packages/manifest.json
to install the ONNX Runtime plugin into your project.
Check out the asus4/onnxruntime-unity repository for more details.
"scopedRegistries": [
{
"name": "NPM",
"url": "https://registry.npmjs.com",
"scopes": [
"com.github.asus4"
]
}
]
"dependencies": {
// Core library
"com.github.asus4.onnxruntime": "0.2.0",
// (Optional) Utilities for Unity
"com.github.asus4.onnxruntime.unity": "0.2.0",
... other dependencies
}
On the mobile platform, the *.onnx model is not recommended, although it's supported. Convert the Onnx model to Ort format.
Please refer to the ORT model format for more details.
# Recommend using python virtual environment
pip install onnx
pip install onnxruntime
# In general,
# Use --optimization_style Runtime, when running on mobile GPU
# Use --optimization_style Fixed, when running on mobile CPU
python -m onnxruntime.tools.convert_onnx_models_to_ort your_onnx_file.onnx --optimization_style Runtime
My code is licensed under MIT.
Please refer to the original licenses of each example in the Assets/Samples/*
folder.
MIT License
Copyright (c) Koki Ibukuro
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.