microsoft/onnxruntime-extensions
Publicmirrored from https://github.com/microsoft/onnxruntime-extensionsAvailable
.gitignore
45lines · modecode
| 1 | # build, distribute, and bins (+ python proto bindings) |
| 2 | mybuild.* |
| 3 | build |
| 4 | build_host_protoc |
| 5 | build_android |
| 6 | build_ios |
| 7 | build_* |
| 8 | .venv/ |
| 9 | _subbuild/ |
| 10 | .build_debug/* |
| 11 | .build_release/* |
| 12 | distribute/* |
| 13 | dist/ |
| 14 | *.testbin |
| 15 | *.bin |
| 16 | cmake_build |
| 17 | .cmake_build |
| 18 | cmake-build* |
| 19 | _selectedoplist.cmake |
| 20 | gen |
| 21 | .DS_Store |
| 22 | *~ |
| 23 | .vs |
| 24 | *-checkpoint.ipynb |
| 25 | .ipynb_checkpoints/ |
| 26 | tutorials/*.onnx |
| 27 | Testing/ |
| 28 | TestResults/ |
| 29 | .idea/ |
| 30 | nuget_root/ |
| 31 | .packages/ |
| 32 | .vscode/ |
| 33 | *.code-workspace |
| 34 | __pycache__ |
| 35 | out/ |
| 36 | *.egg-info/ |
| 37 | .setuptools-cmake-build/ |
| 38 | onnxruntime-*-*-*/ |
| 39 | temp_*.onnx |
| 40 | test/data/*.py |
| 41 | |
| 42 | # Compiled Dynamic libraries |
| 43 | *.so |
| 44 | *.dylib |
| 45 | *.pyd |
| 46 | |