/ADTLib

Automated Drum Transcription Library

Primary LanguagePythonBSD 2-Clause "Simplified" LicenseBSD-2-Clause

Automatic Drum Transcription Library (ADTLib)

The automatic drum transcription (ADT) library contains open source ADT algorithms to aid other researchers in areas of music information retrieval (MIR).

License

This library is published under the BSD license which allows redistribution and modification as long as the copyright and disclaimers are contained. The full license information can be found on the license page.

Installation

Required Packages

numpy
scipy
cython
madmom
tensorflow

The easiest and suggested method to install the libary is to use pip.

 pip install ADTLib

To update the libary use

 pip install --upgrade ADTlib

For futher install information see the install page.

Algorithms

The algorithms that are currently contained within the libary are:

• ADTBDRNN: Bi-directional architecture outlined in [1]

Usage

Algorithms contained within the library are both available as functions for use within python and as command line executable programmes.

###Examples

Command line

ADTBDRNN DrumFile1.wav DrumFile2.wav

Python function

from ADTLib.models import ADTBDRNN

TrackNames=['DrumFile1.wav','DrumFile2.wav']
out=ADTBDRNN(TrackNames)

See the usage page for more information.

References

[1] Southall, C., R. Stables, J. Hockman, Automatic Drum Transcription Using Bi-directional Recurrent Neural Networks, Proceedings of the 17th International Society for Music Information Retrieval Conference (ISMIR), 2016.

##Help

Any questions please feel free to contact me on carl.southall@bcu.ac.uk