-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathadd_paths.m
34 lines (28 loc) · 1.82 KB
/
add_paths.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
% Add file paths
addpath([fileparts(mfilename('fullpath')),filesep,'src',filesep]);
addpath([fileparts(mfilename('fullpath')),filesep,'src',filesep,'files',filesep]);
addpath([fileparts(mfilename('fullpath')),filesep,'src',filesep,'dataset',filesep]);
addpath([fileparts(mfilename('fullpath')),filesep,'src',filesep,'ui',filesep]);
addpath([fileparts(mfilename('fullpath')),filesep,'src',filesep,'general',filesep]);
addpath([fileparts(mfilename('fullpath')),filesep,'src',filesep,'features',filesep]);
addpath([fileparts(mfilename('fullpath')),filesep,'src',filesep,'evaluation',filesep]);
addpath([fileparts(mfilename('fullpath')),filesep,'src',filesep,'sound_event_detection',filesep]);
addpath([fileparts(mfilename('fullpath')),filesep,'src',filesep,'classification',filesep]);
addpath([fileparts(mfilename('fullpath')),filesep,'src',filesep,'scattering',filesep]);
addpath([fileparts(mfilename('fullpath')),filesep,'external',filesep]);
addpath([fileparts(mfilename('fullpath')),filesep,'external',filesep,'DataHash']);
addpath([fileparts(mfilename('fullpath')),filesep,'external',filesep,'GetFullPath']);
addpath([fileparts(mfilename('fullpath')),filesep,'external',filesep,'YAMLMatlab',filesep,'yamlmatlab-master',filesep,'yaml']);
addpath([fileparts(mfilename('fullpath')),filesep,'external',filesep,'rastamat']);
addpath([fileparts(mfilename('fullpath')),filesep,'external',filesep,'voicebox']);
% Scattering
addpath(genpath([fileparts(mfilename('fullpath')),filesep,'external', ...
filesep,'scattering.m']));
% Support vector machines
addpath(genpath([fileparts(mfilename('fullpath')),filesep,'external', ...
filesep,'LIBLINEAR']));
% Deep convolutional networks
addpath([fileparts(mfilename('fullpath')),filesep,'external', ...
filesep, 'MatConvNet', filesep, 'matconvnet-autodiff-stable', ...
filesep,'matlab']);
vl_setupnn();