trevorwelch / ChordRecognitionMIDITrainedExtractor

Chord recognition system with MIDI-trained feature extractor and BLSTM-CRF classifier

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Automatic Audio Chord Recognition with MIDI-Trained Deep Feature and BLSTM-CRF Sequence Decoding Model

My version of the original work so it can be used as a package

from wuyimingchroma import get_chroma
import librosa

y, sr = librosa.load(librosa.example('brahms'), sr=44100)

chroma = get_chroma(y=y)
print(chroma.shape)

About

Chord recognition system with MIDI-trained feature extractor and BLSTM-CRF classifier


Languages

Language:Python 100.0%