├── README.md ├── clean.sh ├── examples └── ode_an_die_freude.wav ├── generate_data.py ├── notes ├── 60 C4.wav ├── 62 D4.wav ├── 64 E4.wav ├── 65 F4.wav ├── 67 G4.wav ├── 69 A4.wav └── 71 B4.wav ├── onset_detection.py ├── pitch_detection.py ├── prev_accuracy.txt ├── train.py └── wav.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniplane/piano-note-prediction/HEAD/README.md -------------------------------------------------------------------------------- /clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniplane/piano-note-prediction/HEAD/clean.sh -------------------------------------------------------------------------------- /examples/ode_an_die_freude.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniplane/piano-note-prediction/HEAD/examples/ode_an_die_freude.wav -------------------------------------------------------------------------------- /generate_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniplane/piano-note-prediction/HEAD/generate_data.py -------------------------------------------------------------------------------- /notes/60 C4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniplane/piano-note-prediction/HEAD/notes/60 C4.wav -------------------------------------------------------------------------------- /notes/62 D4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniplane/piano-note-prediction/HEAD/notes/62 D4.wav -------------------------------------------------------------------------------- /notes/64 E4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniplane/piano-note-prediction/HEAD/notes/64 E4.wav -------------------------------------------------------------------------------- /notes/65 F4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniplane/piano-note-prediction/HEAD/notes/65 F4.wav -------------------------------------------------------------------------------- /notes/67 G4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniplane/piano-note-prediction/HEAD/notes/67 G4.wav -------------------------------------------------------------------------------- /notes/69 A4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniplane/piano-note-prediction/HEAD/notes/69 A4.wav -------------------------------------------------------------------------------- /notes/71 B4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniplane/piano-note-prediction/HEAD/notes/71 B4.wav -------------------------------------------------------------------------------- /onset_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniplane/piano-note-prediction/HEAD/onset_detection.py -------------------------------------------------------------------------------- /pitch_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniplane/piano-note-prediction/HEAD/pitch_detection.py -------------------------------------------------------------------------------- /prev_accuracy.txt: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniplane/piano-note-prediction/HEAD/train.py -------------------------------------------------------------------------------- /wav.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/miniplane/piano-note-prediction/HEAD/wav.py --------------------------------------------------------------------------------