Music Information Retrieval Datasets

http://grh.mur.at/sites/default/files/mir_datasets_0.html

'via Blog this'

Normalising audio with sox : Learnosity Blog

Normalising audio with sox : Learnosity Blog:



  --norm[=dB-level]

              Automatically invoke the gain effect to guard against clipping and to normalise the audio. E.g.

                 sox --norm infile -b 16 outfile rate 44100 dither -s

              is shorthand for

                 sox infile -b 16 outfile gain -h rate 44100 gain -nh dither -s

              Optionally, the audio can be normalized to a given level (usually) below 0 dBFS:

                 sox --norm=-3 infile outfile



              See also -V, -G, and the gain effect.



'via Blog this'

Tuesday, June 23, 2015

replace in mulitple files

perl -p -i.bak -w -e 's|OldPattern|NewPattern|g' SomeFile*
This will replace all the
OldPattern
with
NewPattern

in all the SomeFile*


Friday, June 19, 2015

Monday, June 1, 2015

A quick tutorial of Back Propagation Algorithm

PDF:

https://dl.dropboxusercontent.com/u/7412214/BackPropagation.pdf



Video:

https://www.youtube.com/watch?v=aVId8KMsdUU


https://www4.rgu.ac.uk/files/chapter3%20-%20bp.pdf
http://ufldl.stanford.edu/wiki/index.php/Backpropagation_Algorithm

http://www.cnblogs.com/tornadomeet/category/361811.html

'via Blog this'