├── Data ├── AdsrData.cpp ├── AdsrData.h ├── FilterData.cpp ├── FilterData.h ├── OscData.cpp └── OscData.h ├── LICENSE.md ├── NAP2023_hirai.vst3 ├── PluginEditor.cpp ├── PluginEditor.h ├── PluginProcessor.cpp ├── PluginProcessor.h ├── Python codes ├── LSTM.py ├── LSTM_forNewerPyTorch.py ├── preprocess.py ├── readme.md └── train_generate.py ├── README.md ├── SynthSound.h ├── SynthVoice.cpp ├── SynthVoice.h ├── UI ├── ButtonComponent.cpp ├── ButtonComponent.h ├── GenComponent.cpp ├── GenComponent.h ├── OscComponent.cpp ├── OscComponent.h ├── TrainComponent.cpp ├── TrainComponent.h ├── pianoRollComponent.cpp └── pianoRollComponent.h └── img ├── add_train.png ├── clear.png ├── gen.png ├── pause.png ├── pen1.png ├── pen2.png ├── play.png ├── save.png ├── select1.png ├── select2.png ├── stop.png └── train.png /Data/AdsrData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TatsunoriHirai/ownMelodyGenerativeModel/HEAD/Data/AdsrData.cpp -------------------------------------------------------------------------------- /Data/AdsrData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TatsunoriHirai/ownMelodyGenerativeModel/HEAD/Data/AdsrData.h -------------------------------------------------------------------------------- /Data/FilterData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TatsunoriHirai/ownMelodyGenerativeModel/HEAD/Data/FilterData.cpp -------------------------------------------------------------------------------- /Data/FilterData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TatsunoriHirai/ownMelodyGenerativeModel/HEAD/Data/FilterData.h -------------------------------------------------------------------------------- /Data/OscData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TatsunoriHirai/ownMelodyGenerativeModel/HEAD/Data/OscData.cpp -------------------------------------------------------------------------------- /Data/OscData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TatsunoriHirai/ownMelodyGenerativeModel/HEAD/Data/OscData.h -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TatsunoriHirai/ownMelodyGenerativeModel/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAP2023_hirai.vst3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TatsunoriHirai/ownMelodyGenerativeModel/HEAD/NAP2023_hirai.vst3 -------------------------------------------------------------------------------- /PluginEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TatsunoriHirai/ownMelodyGenerativeModel/HEAD/PluginEditor.cpp -------------------------------------------------------------------------------- /PluginEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TatsunoriHirai/ownMelodyGenerativeModel/HEAD/PluginEditor.h -------------------------------------------------------------------------------- /PluginProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TatsunoriHirai/ownMelodyGenerativeModel/HEAD/PluginProcessor.cpp -------------------------------------------------------------------------------- /PluginProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TatsunoriHirai/ownMelodyGenerativeModel/HEAD/PluginProcessor.h -------------------------------------------------------------------------------- /Python codes/LSTM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TatsunoriHirai/ownMelodyGenerativeModel/HEAD/Python codes/LSTM.py -------------------------------------------------------------------------------- /Python codes/LSTM_forNewerPyTorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TatsunoriHirai/ownMelodyGenerativeModel/HEAD/Python codes/LSTM_forNewerPyTorch.py -------------------------------------------------------------------------------- /Python codes/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TatsunoriHirai/ownMelodyGenerativeModel/HEAD/Python codes/preprocess.py -------------------------------------------------------------------------------- /Python codes/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TatsunoriHirai/ownMelodyGenerativeModel/HEAD/Python codes/readme.md -------------------------------------------------------------------------------- /Python codes/train_generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TatsunoriHirai/ownMelodyGenerativeModel/HEAD/Python codes/train_generate.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TatsunoriHirai/ownMelodyGenerativeModel/HEAD/README.md -------------------------------------------------------------------------------- /SynthSound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TatsunoriHirai/ownMelodyGenerativeModel/HEAD/SynthSound.h -------------------------------------------------------------------------------- /SynthVoice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TatsunoriHirai/ownMelodyGenerativeModel/HEAD/SynthVoice.cpp -------------------------------------------------------------------------------- /SynthVoice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TatsunoriHirai/ownMelodyGenerativeModel/HEAD/SynthVoice.h -------------------------------------------------------------------------------- /UI/ButtonComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TatsunoriHirai/ownMelodyGenerativeModel/HEAD/UI/ButtonComponent.cpp -------------------------------------------------------------------------------- /UI/ButtonComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TatsunoriHirai/ownMelodyGenerativeModel/HEAD/UI/ButtonComponent.h -------------------------------------------------------------------------------- /UI/GenComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TatsunoriHirai/ownMelodyGenerativeModel/HEAD/UI/GenComponent.cpp -------------------------------------------------------------------------------- /UI/GenComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TatsunoriHirai/ownMelodyGenerativeModel/HEAD/UI/GenComponent.h -------------------------------------------------------------------------------- /UI/OscComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TatsunoriHirai/ownMelodyGenerativeModel/HEAD/UI/OscComponent.cpp -------------------------------------------------------------------------------- /UI/OscComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TatsunoriHirai/ownMelodyGenerativeModel/HEAD/UI/OscComponent.h -------------------------------------------------------------------------------- /UI/TrainComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TatsunoriHirai/ownMelodyGenerativeModel/HEAD/UI/TrainComponent.cpp -------------------------------------------------------------------------------- /UI/TrainComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TatsunoriHirai/ownMelodyGenerativeModel/HEAD/UI/TrainComponent.h -------------------------------------------------------------------------------- /UI/pianoRollComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TatsunoriHirai/ownMelodyGenerativeModel/HEAD/UI/pianoRollComponent.cpp -------------------------------------------------------------------------------- /UI/pianoRollComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TatsunoriHirai/ownMelodyGenerativeModel/HEAD/UI/pianoRollComponent.h -------------------------------------------------------------------------------- /img/add_train.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TatsunoriHirai/ownMelodyGenerativeModel/HEAD/img/add_train.png -------------------------------------------------------------------------------- /img/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TatsunoriHirai/ownMelodyGenerativeModel/HEAD/img/clear.png -------------------------------------------------------------------------------- /img/gen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TatsunoriHirai/ownMelodyGenerativeModel/HEAD/img/gen.png -------------------------------------------------------------------------------- /img/pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TatsunoriHirai/ownMelodyGenerativeModel/HEAD/img/pause.png -------------------------------------------------------------------------------- /img/pen1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TatsunoriHirai/ownMelodyGenerativeModel/HEAD/img/pen1.png -------------------------------------------------------------------------------- /img/pen2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TatsunoriHirai/ownMelodyGenerativeModel/HEAD/img/pen2.png -------------------------------------------------------------------------------- /img/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TatsunoriHirai/ownMelodyGenerativeModel/HEAD/img/play.png -------------------------------------------------------------------------------- /img/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TatsunoriHirai/ownMelodyGenerativeModel/HEAD/img/save.png -------------------------------------------------------------------------------- /img/select1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TatsunoriHirai/ownMelodyGenerativeModel/HEAD/img/select1.png -------------------------------------------------------------------------------- /img/select2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TatsunoriHirai/ownMelodyGenerativeModel/HEAD/img/select2.png -------------------------------------------------------------------------------- /img/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TatsunoriHirai/ownMelodyGenerativeModel/HEAD/img/stop.png -------------------------------------------------------------------------------- /img/train.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TatsunoriHirai/ownMelodyGenerativeModel/HEAD/img/train.png --------------------------------------------------------------------------------