Mercurial > hg > camir-aes2014
comparison editme_startup.m @ 0:e9a9cd732c1e tip
first hg version after svn
author | wolffd |
---|---|
date | Tue, 10 Feb 2015 15:05:51 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:e9a9cd732c1e |
---|---|
1 % The CAMIR framework for music similarity experiments | |
2 % Copyright (C) {2013} {Daniel Wolff} (wolffd.mail [at] gmail [dot] com) | |
3 % | |
4 % This program is free software: you can redistribute it and/or modify | |
5 % it under the terms of the GNU General Public License as published by | |
6 % the Free Software Foundation, either version 3 of the License, or | |
7 % (at your option) any later version. | |
8 % | |
9 % This program is distributed in the hope that it will be useful, | |
10 % but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 % GNU General Public License for more details. | |
13 % | |
14 % You should have received a copy of the GNU General Public License | |
15 % along with this program. If not, see [http://www.gnu.org/licenses/]. | |
16 % | |
17 % This software has been made possible by many other projects included | |
18 % in the /toolboxes folder. Please consider their further licenses. | |
19 | |
20 % --- | |
21 % startup.m local | |
22 % this is the place to set system-specific parameters and paths | |
23 % | |
24 % please run the scripts in the folder 'reproduce_AES53rd' for reproducing | |
25 % experimental results of | |
26 % Feature Preprocessing with RBMs for Music Similarity Learning | |
27 % Son N. Tran, Daniel Wolff, Tillman Weyde, Artur Garcez, AES53rd conference | |
28 % --- | |
29 | |
30 global globalvars; | |
31 | |
32 % --- | |
33 % @TODO: PLEASE insert your absolute path to the folder containing this | |
34 % script | |
35 % --- | |
36 my_path = pwd;%'C:\_danielwolff\_documents\coding\matlab\music_research_branches\ISMIR2013'; | |
37 % --- | |
38 % Add Toolboxes | |
39 % --- | |
40 addpath(genpath(my_path)); | |
41 | |
42 addpath(genpath([my_path '/toolboxes/bioakustik_tools'])) | |
43 addpath(genpath([my_path '/toolboxes/graph_visualisation/graphViz4Matlab/util'])) | |
44 | |
45 addpath(pathsdiff(genpath([my_path]),... | |
46 '.svn')); | |
47 | |
48 % smv-light | |
49 addtosystempath([my_path '/toolboxes/SVM-light']); | |
50 | |
51 globalvars.camir.msd.basepath = ''; | |
52 globalvars.tstaudiopath = [my_path '/features']; | |
53 globalvars.mfilepath = ''; | |
54 globalvars.tstoutputpath = [my_path '/features']; | |
55 globalvars.systemslash = filesep; | |
56 | |
57 try | |
58 cd core | |
59 catch | |
60 end | |
61 | |
62 startup_music_research; | |
63 | |
64 try | |
65 cd .. | |
66 cd reproduce_AES53rd | |
67 catch | |
68 end |