microsoft/onnxruntime-extensions
Publicmirrored from https://github.com/microsoft/onnxruntime-extensionsAvailable
.gitignore
55lines · 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 | local.properties |
| 22 | .DS_Store |
| 23 | *~ |
| 24 | .vs |
| 25 | *-checkpoint.ipynb |
| 26 | .ipynb_checkpoints/ |
| 27 | /tutorials/*.onnx |
| 28 | /tutorials/**/bin/ |
| 29 | /tutorials/**/obj/ |
| 30 | /tutorials/**/libs/ |
| 31 | Testing/ |
| 32 | TestResults/ |
| 33 | .idea/ |
| 34 | nuget_root/ |
| 35 | .packages/ |
| 36 | .vscode/ |
| 37 | *.code-workspace |
| 38 | __pycache__ |
| 39 | out/ |
| 40 | *.egg-info/ |
| 41 | .scb/ |
| 42 | onnxruntime_extensions/_version.py |
| 43 | onnxruntime-*-*-*/ |
| 44 | temp_*onnx* |
| 45 | # Java specific ignores |
| 46 | */.gradle |
| 47 | java/hs_*.log |
| 48 | *.class |
| 49 | # Compiled Dynamic libraries |
| 50 | *.so |
| 51 | *.dylib |
| 52 | *.pyd |
| 53 | /test/data/ppp_vision/*.updated.onnx |
| 54 | /test/data/generated/ |
| 55 | /CMakeSettings.json |
| 56 | |