All Projects → jsleep → Wav2mid

jsleep / Wav2mid

Licence: mit
Automatic Music Transcription with Deep Neural Networks

Projects that are alternatives of or similar to Wav2mid

2016 01 Tennis Betting Analysis
Methodology and code supporting the BuzzFeed News/BBC article, "The Tennis Racket," published Jan. 17, 2016.
Stars: ✭ 244 (-0.81%)
Mutual labels:  jupyter-notebook
Zhihu
知乎看山杯 第二名 解决方案
Stars: ✭ 245 (-0.41%)
Mutual labels:  jupyter-notebook
Recsys core
[电影推荐系统] Based on the movie scoring data set, the movie recommendation system is built with FM and LR as the core(基于爬取的电影评分数据集,构建以FM和LR为核心的电影推荐系统).
Stars: ✭ 245 (-0.41%)
Mutual labels:  jupyter-notebook
Human body prior
VPoser: Variational Human Pose Prior
Stars: ✭ 244 (-0.81%)
Mutual labels:  jupyter-notebook
Yolo Series
A series of notebooks describing how to use YOLO (darkflow) in python
Stars: ✭ 245 (-0.41%)
Mutual labels:  jupyter-notebook
Conceptualsearch
Train a Word2Vec model or LSA model, and Implement Conceptual Search\Semantic Search in Solr\Lucene - Simon Hughes Dice.com, Dice Tech Jobs
Stars: ✭ 245 (-0.41%)
Mutual labels:  jupyter-notebook
Data Cleaning 101
Data Cleaning Libraries with Python
Stars: ✭ 243 (-1.22%)
Mutual labels:  jupyter-notebook
Scipy 2018 Sklearn
Scipy 2018 scikit-learn tutorial by Guillaume Lemaitre and Andreas Mueller
Stars: ✭ 247 (+0.41%)
Mutual labels:  jupyter-notebook
Link Prediction
Representation learning for link prediction within social networks
Stars: ✭ 245 (-0.41%)
Mutual labels:  jupyter-notebook
Pomegranate
Fast, flexible and easy to use probabilistic modelling in Python.
Stars: ✭ 2,789 (+1033.74%)
Mutual labels:  jupyter-notebook
Delf Pytorch
PyTorch Implementation of "Large-Scale Image Retrieval with Attentive Deep Local Features"
Stars: ✭ 245 (-0.41%)
Mutual labels:  jupyter-notebook
Guided Evolutionary Strategies
Guided Evolutionary Strategies
Stars: ✭ 245 (-0.41%)
Mutual labels:  jupyter-notebook
Jupyter Tips And Tricks
Using Project Jupyter for data science.
Stars: ✭ 245 (-0.41%)
Mutual labels:  jupyter-notebook
Fouriertalkoscon
Presentation Materials for my "Sound Analysis with the Fourier Transform and Python" OSCON Talk.
Stars: ✭ 244 (-0.81%)
Mutual labels:  jupyter-notebook
Bigquery Oreilly Book
Source code accompanying: BigQuery: The Definitive Guide by Lakshmanan & Tigani to be published by O'Reilly Media
Stars: ✭ 246 (+0%)
Mutual labels:  jupyter-notebook
Smpybandits
🔬 Research Framework for Single and Multi-Players 🎰 Multi-Arms Bandits (MAB) Algorithms, implementing all the state-of-the-art algorithms for single-player (UCB, KL-UCB, Thompson...) and multi-player (MusicalChair, MEGA, rhoRand, MCTop/RandTopM etc).. Available on PyPI: https://pypi.org/project/SMPyBandits/ and documentation on
Stars: ✭ 244 (-0.81%)
Mutual labels:  jupyter-notebook
Box Plots Sklearn
An implementation of some of the tools used by the winner of the box plots competition using scikit-learn.
Stars: ✭ 245 (-0.41%)
Mutual labels:  jupyter-notebook
Mltrain Nips 2017
This repository contains all the material for the MLTrain NIPS workshop
Stars: ✭ 246 (+0%)
Mutual labels:  jupyter-notebook
Audio Classification
Code for YouTube series: Deep Learning for Audio Classification
Stars: ✭ 245 (-0.41%)
Mutual labels:  jupyter-notebook
Exploratory computing with python
Stars: ✭ 245 (-0.41%)
Mutual labels:  jupyter-notebook

wav2mid: Polyphonic Piano Music Transcription with Deep Neural Networks

Thesis by Jonathan Sleep for MS in CSC @ CalPoly

Abstract / Intro

There has been a multitude of recent research on using deep learning for music & audio generation and classification. In this paper, we plan to build on these works by implementing a novel system to automatically transcribe polyphonic music with an artificial neural network model. We show that by treating the transcription problem as an image classification problem we can use transformed audio data to predict the group of notes currently being played.

Background

Digital Signal Processing: Fourier Transform, STFT, Constant-Q, Onset/Beat Tracking, Auto-correlation Machine Learning: Artificial Neural Networks, Convolutional Neural Networks, Recurrent Neural Networks

Related Work on AMT

Design

The design for the system is as follows:

  • Pre-process our data into an ingestible format, fourier-like transform of the audio and piano-roll conversion of midi files.
  • Design a neural network model to estimate current notes from audio data
  • Use frame-wise (simpler) or onsets (faster)
  • Train on a large corpus of audio to midi
  • Evaluate it's performance on audio/midi pairs we have not trained on

Implementation

Libraries

  • Python - due to the abundance of music and machine learning libraries developed for it
  • librosa - for digital signal processing methods
  • pretty_midi - for midi manipulation methods
  • TensorFlow - for neural networks

Data

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].