This repository has been archived by the owner on Oct 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
walkthrough.html
89 lines (78 loc) · 2.73 KB
/
walkthrough.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<h5>Overview</h5>
<div>Though there are an increasing number of deep learning tutorials to be found, this walkthrough aims to fill a void in the music signal processing space. Here, we provide source code and compatible data that will hopefully get you, curious reader, up and running with deep learning in a pair of music processing tasks: monophonic instrument classification and chroma learning.</div>
</br>
<div>The remainder of this guided tour is organized as follows:</div>
<div>
<ul>
<li><a href="#source_code">Source Code</a></li>
<li><a href="#data">Data</a></li>
<li><a href="#config">System Configuration</a></li>
<ul>
<li><a href="#troubleshooting">Troubleshooting</a></li>
</ul>
<li><a href="#examples"></a></li>
<ul>
<li>Monophonic Instrument Classification</li>
<li><a href="#inst_prob">Problem Formulation</a></li>
<li>Network</li>
<li>Training</li>
<li>Running</li>
</ul>
<li>Learning a Chroma Transform from DFT Coefficients</li>
<ul>
<li>Problem Formulation</li>
<li>Network</li>
<li>Training</li>
<li>Running</li>
</ul>
<li>Additional Resources</li>
</ul>
</div>
<div>
<hr />
</div>
<h5 id="source_code">Source Code</h5>
<div>All code snippets contained on this page are linked from a <a href="https://bitbucket.org/ejhumphrey/dltutorial/overview">git repository</a> hosted on BitBucket. The first thing you'll want to do is clone this repository locally with something like the following from the command line:</div>
<code>
$ cd /some/directory/
$ git clone https://[email protected]/ejhumphrey/dltutorial.git
$ cd dltutorial
</code>
<div>We'll assume for the remainder of the walkthrough that you are operating out of this directory.</div>
<div>
<hr />
</div>
<h5 id="data">Data</h5>
For your machine learning enjoyment, we provide two datasets that will work seamlessly with the provided source code:
<ul>
<li>Chord Annotated Magnitude DFT Coefficients: <a title="Chord Dataset" href="http://files.nyu.edu/ejh333/public/chord_dataset.tgz">tar</a></li>
<li>Monophonic Instrument Features: tar</li>
</ul>
<hr />
<h5>Installation</h5>
<div></div>
</div>
<div></div>
<div>
<hr />
</div>
<h5>Troubleshooting</h5>
<div>
<div>
<hr />
</div>
<h5>Additional Resources</h5>
<div> If you, for any reason, find yourself looking for more information, insight, or references, we strongly recommend exploring the following:</div>
</div>
<div>
<ul>
<li>Theano Deep Learning Tutorials (Python): <a href="http://deeplearning.net/software/theano/tutorial/" target="_blank">link</a></li>
<li>Stanford Deep Learning Tutorial (Matlab): <a href="http://ufldl.stanford.edu/wiki/index.php/UFLDL_Tutorial" target="_blank">link</a></li>
</ul>
</div>
<div></div>