| dataset | meta data | contents | with audio |
|---|---|---|---|
| 200DrumMachines | 7371 one-shots | yes | |
| AAM | onsets, pitches, instruments, melody instrument, keys, chords, tempo, beats | 3000 (artificial) tracks | yes |
| ACM_MIRUM | tempo | 1410 excerpts (60s) | yes |
| ACPAS | aligned audio and scores | 2189 performances of 497 scores | downloadable |
| AcousticBrainz-Genre | 15-31 genres with 265-745 subgenres | audio features for ove |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package epic.tensorflow | |
| import org.bytedeco.javacpp.{tensorflow, BytePointer} | |
| import org.bytedeco.javacpp.tensorflow.GraphDef | |
| /** | |
| * Created by kitaev on 1/22/16. | |
| */ | |
| class TensorflowModel(filename: String) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #undef HID_ENABLED | |
| // Arduino Due ADC->DMA->USB 1MSPS | |
| // by stimmer | |
| // from http://forum.arduino.cc/index.php?topic=137635.msg1136315#msg1136315 | |
| // Input: Analog in A0 | |
| // Output: Raw stream of uint16_t in range 0-4095 on Native USB Serial/ACM | |
| // on linux, to stop the OS cooking your data: | |
| // stty -F /dev/ttyACM0 raw -iexten -echo -echoe -echok -echoctl -echoke -onlcr |