├── .github └── workflows │ └── cpp.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── NeuralSeed ├── Makefile ├── README.md ├── all_model_data.h └── neuralseed.cpp ├── README.md ├── models ├── gru4_ts9_pytorch.json ├── gru8_ts9_pytorch.json ├── lstm4_ts9_pytorch.json ├── lstm8_ts9_pytorch.json └── ts9_gru7_gain10_loss003_TEST.json ├── neuralseed.jpg └── scripts ├── Parameterization-Config-2-dist.json ├── Parameterization-Config-3-mi.json └── convert_json_to_c_header_gru.py /.github/workflows/cpp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuitarML/NeuralSeed/HEAD/.github/workflows/cpp.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | *.bin 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuitarML/NeuralSeed/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuitarML/NeuralSeed/HEAD/LICENSE -------------------------------------------------------------------------------- /NeuralSeed/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuitarML/NeuralSeed/HEAD/NeuralSeed/Makefile -------------------------------------------------------------------------------- /NeuralSeed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuitarML/NeuralSeed/HEAD/NeuralSeed/README.md -------------------------------------------------------------------------------- /NeuralSeed/all_model_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuitarML/NeuralSeed/HEAD/NeuralSeed/all_model_data.h -------------------------------------------------------------------------------- /NeuralSeed/neuralseed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuitarML/NeuralSeed/HEAD/NeuralSeed/neuralseed.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuitarML/NeuralSeed/HEAD/README.md -------------------------------------------------------------------------------- /models/gru4_ts9_pytorch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuitarML/NeuralSeed/HEAD/models/gru4_ts9_pytorch.json -------------------------------------------------------------------------------- /models/gru8_ts9_pytorch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuitarML/NeuralSeed/HEAD/models/gru8_ts9_pytorch.json -------------------------------------------------------------------------------- /models/lstm4_ts9_pytorch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuitarML/NeuralSeed/HEAD/models/lstm4_ts9_pytorch.json -------------------------------------------------------------------------------- /models/lstm8_ts9_pytorch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuitarML/NeuralSeed/HEAD/models/lstm8_ts9_pytorch.json -------------------------------------------------------------------------------- /models/ts9_gru7_gain10_loss003_TEST.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuitarML/NeuralSeed/HEAD/models/ts9_gru7_gain10_loss003_TEST.json -------------------------------------------------------------------------------- /neuralseed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuitarML/NeuralSeed/HEAD/neuralseed.jpg -------------------------------------------------------------------------------- /scripts/Parameterization-Config-2-dist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuitarML/NeuralSeed/HEAD/scripts/Parameterization-Config-2-dist.json -------------------------------------------------------------------------------- /scripts/Parameterization-Config-3-mi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuitarML/NeuralSeed/HEAD/scripts/Parameterization-Config-3-mi.json -------------------------------------------------------------------------------- /scripts/convert_json_to_c_header_gru.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GuitarML/NeuralSeed/HEAD/scripts/convert_json_to_c_header_gru.py --------------------------------------------------------------------------------