comparison 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
comparison
equal deleted inserted replaced
3:06a2a18a3960 4:a1f6a08f624c
1 % Modify the following variables to include the locations
2 % of the libraries and the dataset in your own system
3
4 scatnet_path = [pwd, '/../libraries/scatnet-0.2/'];
5 libsvm_compact_path = [pwd, '/../libraries/libsvm-compact-0.1/'];
6
7 gtzan_path = '/import/c4dm-datasets/gtzan/';
8
9 fprintf('\n**********\nAdding the necessary folders to Matlab path\n**********\n');
10 run([scatnet_path, 'addpath_scatnet.m']);
11 addpath([libsvm_compact_path, 'matlab']);
12
13 mfilepath=fileparts(which(mfilename));
14 addpath(fullfile(mfilepath,'reeval/experiments/'));
15 addpath(fullfile(mfilepath,'reeval/folds/'));
16 addpath(fullfile(mfilepath,'reeval/classification/'));
17 addpath(fullfile(mfilepath,'reeval/features/'));