gitextract_nq2axijl/ ├── .github/ │ └── workflows/ │ ├── build.yaml │ └── python-publish.yaml ├── .gitignore ├── .gitmodules ├── LICENSE ├── MANIFEST.in ├── README.md ├── docs/ │ └── index.md ├── extras/ │ ├── 01_nn_attributes.maxpat │ └── generate_test_model.py ├── install/ │ ├── MaxAPI.lib │ ├── dylib_fix.py │ ├── macos_max_makeub.sh │ ├── macos_pd_makeub.sh │ ├── max-linker-flags.txt │ ├── mkl.cmake │ └── patch_with_vst.sh ├── package-info.json.in ├── python_tools/ │ ├── __init__.py │ ├── buffer.py │ ├── codegen.py │ ├── module.py │ ├── templates/ │ │ ├── __init__.py │ │ ├── attributes.py │ │ └── buffers.py │ └── test/ │ ├── test_attributes.maxpat │ ├── test_attributes.py │ ├── test_buffers.py │ ├── test_list_attributes.maxpat │ └── utils.py ├── requirements.txt ├── requirements_darwin_x64.txt ├── scripting/ │ ├── README.md │ ├── effects.py │ ├── effects.ts │ ├── features.py │ ├── features.ts │ ├── scripting.maxpat │ └── unmix.py ├── setup.py └── src/ ├── .nojekyll ├── CMakeLists.txt ├── backend/ │ ├── CMakeLists.txt │ ├── backend.cpp │ ├── backend.h │ ├── parsing_utils.cpp │ └── parsing_utils.h ├── cmake/ │ └── add_torch.cmake ├── extras/ │ ├── nn~ Overview.maxpat │ └── patch_with_vst.sh ├── frontend/ │ ├── maxmsp/ │ │ ├── mc.nn_tilde/ │ │ │ ├── CMakeLists.txt │ │ │ └── mc.nn_tilde.cpp │ │ ├── mcs.nn_tilde/ │ │ │ ├── CMakeLists.txt │ │ │ └── mcs.nn_tilde.cpp │ │ ├── nn.info/ │ │ │ ├── CMakeLists.txt │ │ │ └── nn.info.cpp │ │ ├── nn_tilde/ │ │ │ ├── CMakeLists.txt │ │ │ ├── nn_tilde.cpp │ │ │ ├── nn_tilde_test.cpp │ │ │ └── nn~.maxhelp │ │ └── shared/ │ │ ├── array_tools.h │ │ ├── buffer_tools.h │ │ ├── dict_utils.h │ │ ├── max_model_download.h │ │ └── nn_base.h │ └── puredata/ │ ├── nn_tilde/ │ │ ├── CMakeLists.txt │ │ ├── nn_tilde.cpp │ │ └── nn~-help.pd │ └── shared/ │ ├── pd_buffer_manager.h │ └── pd_model_download.h ├── help/ │ ├── mc.nn~.maxhelp │ ├── mcs.nn~.maxhelp │ ├── nn.info.maxhelp │ └── nn~.maxhelp ├── models/ │ ├── demo_attributes.ts │ ├── demo_buffers.ts │ ├── demo_mc.ts │ ├── effects.ts │ ├── features.ts │ └── wavetable.ts ├── patchers/ │ ├── after_help.maxpat │ ├── help_hub.maxpat │ ├── latent_remote/ │ │ ├── M4L.latent_remote.js │ │ ├── M4L.latent_remote.maxhelp │ │ ├── M4L.latent_remote.maxpat │ │ ├── M4L.latent_slider.maxhelp │ │ ├── M4L.latent_slider.maxpat │ │ ├── M4L.latent_slider_component.maxpat │ │ ├── frand.maxpat │ │ ├── ierf.gendsp │ │ ├── latent_remote.js │ │ ├── latent_remote.maxhelp │ │ ├── latent_remote.maxpat │ │ ├── latent_slider.maxhelp │ │ ├── latent_slider.maxpat │ │ └── latent_slider_component.maxpat │ ├── rave_help.maxpat │ ├── ts_help.maxpat │ └── vschaos_help.maxpat ├── shared/ │ ├── circular_buffer.h │ ├── model_download.h │ └── static_buffer.h └── source/ ├── attributes.py ├── buffers.py ├── effects.py ├── features.py └── unmix.py