├── .github └── workflows │ └── cmake.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── README.md ├── neural_net.py ├── neural_net_weights.json └── plugin ├── Plugin.cpp └── Plugin.h /.github/workflows/cmake.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural-example/HEAD/.github/workflows/cmake.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /.vscode 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural-example/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural-example/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural-example/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural-example/HEAD/README.md -------------------------------------------------------------------------------- /neural_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural-example/HEAD/neural_net.py -------------------------------------------------------------------------------- /neural_net_weights.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural-example/HEAD/neural_net_weights.json -------------------------------------------------------------------------------- /plugin/Plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural-example/HEAD/plugin/Plugin.cpp -------------------------------------------------------------------------------- /plugin/Plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jatinchowdhury18/RTNeural-example/HEAD/plugin/Plugin.h --------------------------------------------------------------------------------