annotate load_files.m @ 4:a1f6a08f624c tip

Completed version 0.0.2
author Francisco Rodriguez Algarra <f.rodriguezalgarra@qmul.ac.uk>
date Tue, 03 Nov 2015 21:24:41 +0000
parents
children
rev   line source
f@4 1 % Modify the following variables to include the locations
f@4 2 % of the libraries and the dataset in your own system
f@4 3
f@4 4 scatnet_path = [pwd, '/../libraries/scatnet-0.2/'];
f@4 5 libsvm_compact_path = [pwd, '/../libraries/libsvm-compact-0.1/'];
f@4 6
f@4 7 gtzan_path = '/import/c4dm-datasets/gtzan/';
f@4 8
f@4 9 fprintf('\n**********\nAdding the necessary folders to Matlab path\n**********\n');
f@4 10 run([scatnet_path, 'addpath_scatnet.m']);
f@4 11 addpath([libsvm_compact_path, 'matlab']);
f@4 12
f@4 13 mfilepath=fileparts(which(mfilename));
f@4 14 addpath(fullfile(mfilepath,'reeval/experiments/'));
f@4 15 addpath(fullfile(mfilepath,'reeval/folds/'));
f@4 16 addpath(fullfile(mfilepath,'reeval/classification/'));
f@4 17 addpath(fullfile(mfilepath,'reeval/features/'));