wolffd@0: % The CAMIR framework for music similarity experiments wolffd@0: % Copyright (C) {2013} {Daniel Wolff} (wolffd.mail [at] gmail [dot] com) wolffd@0: % wolffd@0: % This program is free software: you can redistribute it and/or modify wolffd@0: % it under the terms of the GNU General Public License as published by wolffd@0: % the Free Software Foundation, either version 3 of the License, or wolffd@0: % (at your option) any later version. wolffd@0: % wolffd@0: % This program is distributed in the hope that it will be useful, wolffd@0: % but WITHOUT ANY WARRANTY; without even the implied warranty of wolffd@0: % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the wolffd@0: % GNU General Public License for more details. wolffd@0: % wolffd@0: % You should have received a copy of the GNU General Public License wolffd@0: % along with this program. If not, see [http://www.gnu.org/licenses/]. wolffd@0: % wolffd@0: % This software has been made possible by many other projects included wolffd@0: % in the /toolboxes folder. Please consider their further licenses. wolffd@0: wolffd@0: % --- wolffd@0: % startup.m local wolffd@0: % this is the place to set system-specific parameters and paths wolffd@0: % wolffd@0: % please run the scripts in the folder 'reproduce_AES53rd' for reproducing wolffd@0: % experimental results of wolffd@0: % Feature Preprocessing with RBMs for Music Similarity Learning wolffd@0: % Son N. Tran, Daniel Wolff, Tillman Weyde, Artur Garcez, AES53rd conference wolffd@0: % --- wolffd@0: wolffd@0: global globalvars; wolffd@0: wolffd@0: % --- wolffd@0: % @TODO: PLEASE insert your absolute path to the folder containing this wolffd@0: % script wolffd@0: % --- wolffd@0: my_path = pwd;%'C:\_danielwolff\_documents\coding\matlab\music_research_branches\ISMIR2013'; wolffd@0: % --- wolffd@0: % Add Toolboxes wolffd@0: % --- wolffd@0: addpath(genpath(my_path)); wolffd@0: wolffd@0: addpath(genpath([my_path '/toolboxes/bioakustik_tools'])) wolffd@0: addpath(genpath([my_path '/toolboxes/graph_visualisation/graphViz4Matlab/util'])) wolffd@0: wolffd@0: addpath(pathsdiff(genpath([my_path]),... wolffd@0: '.svn')); wolffd@0: wolffd@0: % smv-light wolffd@0: addtosystempath([my_path '/toolboxes/SVM-light']); wolffd@0: wolffd@0: globalvars.camir.msd.basepath = ''; wolffd@0: globalvars.tstaudiopath = [my_path '/features']; wolffd@0: globalvars.mfilepath = ''; wolffd@0: globalvars.tstoutputpath = [my_path '/features']; wolffd@0: globalvars.systemslash = filesep; wolffd@0: wolffd@0: try wolffd@0: cd core wolffd@0: catch wolffd@0: end wolffd@0: wolffd@0: startup_music_research; wolffd@0: wolffd@0: try wolffd@0: cd .. wolffd@0: cd reproduce_AES53rd wolffd@0: catch wolffd@0: end