Commit da2b4167 authored by Steve Tjoa's avatar Steve Tjoa

moved exercises into the other sections; added new topic notebooks

parent 61fa1d54
{ {
"metadata": { "metadata": {
"name": "", "name": "",
"signature": "sha256:f34c58a156ee9923bd4c75354c244e660231e9c262be01bea71b3108b52a9e05" "signature": "sha256:b7c48e9311519e2e338ab9072caa5072a49010b16e8889c33a77f42d92305d59"
}, },
"nbformat": 3, "nbformat": 3,
"nbformat_minor": 0, "nbformat_minor": 0,
...@@ -48,7 +48,7 @@ ...@@ -48,7 +48,7 @@
"level": 2, "level": 2,
"metadata": {}, "metadata": {},
"source": [ "source": [
"MIR Basics" "MIR Basics and Applications"
] ]
}, },
{ {
...@@ -56,7 +56,11 @@ ...@@ -56,7 +56,11 @@
"metadata": {}, "metadata": {},
"source": [ "source": [
"1. [Segmentation](notebooks/segmentation.ipynb)\n", "1. [Segmentation](notebooks/segmentation.ipynb)\n",
"1. [Onset Detection](notebooks/onset_detection.ipynb)" "1. [Signal Representations](notebooks/signal_representations.ipynb)\n",
"1. [Onset Detection](notebooks/onset_detection.ipynb)\n",
"1. [Beat Tracking](notebooks/beat_tracking.ipynb)\n",
"1. [Tempo Estimation](notebooks/tempo_estimation.ipynb)\n",
"1. [Exercise: Understanding Audio Features through Sonification](exercises/feature_sonification.ipynb)"
] ]
}, },
{ {
...@@ -73,6 +77,7 @@ ...@@ -73,6 +77,7 @@
"source": [ "source": [
"1. [Feature Extraction](notebooks/feature_extraction.ipynb)\n", "1. [Feature Extraction](notebooks/feature_extraction.ipynb)\n",
"1. [Spectral Features](notebooks/spectral_features.ipynb)\n", "1. [Spectral Features](notebooks/spectral_features.ipynb)\n",
"1. [Tonal Descriptors: Pitch and Chroma](notebooks/)\n",
"1. [Onset Detection](notebooks/onset_detection.ipynb)\n", "1. [Onset Detection](notebooks/onset_detection.ipynb)\n",
"1. [Mel-Frequency Ceptral Coefficients](notebooks/mfcc.ipynb)" "1. [Mel-Frequency Ceptral Coefficients](notebooks/mfcc.ipynb)"
] ]
...@@ -92,34 +97,11 @@ ...@@ -92,34 +97,11 @@
"1. [K-Nearest Neighbor](notebooks/knn.ipynb)\n", "1. [K-Nearest Neighbor](notebooks/knn.ipynb)\n",
"1. [K-Means Clustering](notebooks/kmeans.ipynb)\n", "1. [K-Means Clustering](notebooks/kmeans.ipynb)\n",
"1. [Nonnegative Matrix Factorization](notebooks/nmf.ipynb)\n", "1. [Nonnegative Matrix Factorization](notebooks/nmf.ipynb)\n",
"1. [Cross Validation](notebooks/cross_validation.ipynb)" "1. [Cross Validation](notebooks/cross_validation.ipynb)\n",
"1. [Exercise: Instrument Classification using K-NN](exercises/knn_instrument_classification.ipynb)\n",
"1. [Exercise: Unsupervised Instrument Classification using K-Means](exercises/)\n",
"1. [Exercise: Source Separation using NMF](exercises/nmf_source_separation.ipynb)"
] ]
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"Exercises"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"1. [Understanding Audio Features through Sonification](exercises/feature_sonification.ipynb)\n",
"1. [Instrument Classification using K-NN](exercises/knn_instrument_classification.ipynb)\n",
"1. [Unsupervised Instrument Classification using K-Means](exercises/)\n",
"1. [Source Separation using NMF](exercises/nmf_source_separation.ipynb)"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [],
"language": "python",
"metadata": {},
"outputs": []
} }
], ],
"metadata": {} "metadata": {}
......
{
"metadata": {
"name": "",
"signature": "sha256:fe22b5f96249a7f6dbef4d0f19f52c0793c08ec4d966872abb97fabb2db636f1"
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
{
"cell_type": "heading",
"level": 1,
"metadata": {},
"source": [
"Beat Tracking"
]
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"`librosa.beat.beat_track`"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [],
"language": "python",
"metadata": {},
"outputs": []
},
{
"cell_type": "code",
"collapsed": false,
"input": [],
"language": "python",
"metadata": {},
"outputs": []
},
{
"cell_type": "code",
"collapsed": false,
"input": [],
"language": "python",
"metadata": {},
"outputs": []
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"`essentia.standard.BeatTrackerMultiFeature`"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [],
"language": "python",
"metadata": {},
"outputs": []
}
],
"metadata": {}
}
]
}
\ No newline at end of file
{
"metadata": {
"name": "",
"signature": "sha256:ec5c940730bd7e54d28eb300f7a94fbea37360cc6340531c1538b6c27b86b89a"
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
{
"cell_type": "heading",
"level": 1,
"metadata": {},
"source": [
"Signal Representations"
]
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"`librosa.core.cqt`"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [],
"language": "python",
"metadata": {},
"outputs": []
}
],
"metadata": {}
}
]
}
\ No newline at end of file
{
"metadata": {
"name": "",
"signature": "sha256:97a0df8e94e03f0ee8b35bdcfeecb7fe032f56066a42d95137d5a30c286d8790"
},
"nbformat": 3,
"nbformat_minor": 0,
"worksheets": [
{
"cells": [
{
"cell_type": "heading",
"level": 1,
"metadata": {},
"source": [
"Tempo Estimation"
]
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"`librosa.beat.estimate_tempo`"
]
},
{
"cell_type": "heading",
"level": 2,
"metadata": {},
"source": [
"`essentia.standard.Tempo*`"
]
},
{
"cell_type": "code",
"collapsed": false,
"input": [],
"language": "python",
"metadata": {},
"outputs": []
}
],
"metadata": {}
}
]
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment