-
Notifications
You must be signed in to change notification settings - Fork 19
/
run_ICL.m
88 lines (81 loc) · 3.07 KB
/
run_ICL.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
function labels = run_ICL(version, images, psds, autocorrs)
%% check inputs
if any(strcmpi(version, {[], 'default'}))
version = '';
elseif any(strcmpi(version, 'lite'))
version = '_lite';
elseif any(strcmpi(version, 'beta'))
version = '_beta';
else
error(['Invalid network version choice. '...
'Must be one of the following: ' ...
'''default'' (alternatively ''[] or ''''), '...
'''lite'', or ''beta''.'])
end
if ~exist('autocorrs', 'var') || isempty(autocorrs)
flag_autocorr = false;
else
flag_autocorr = true;
end
%% get path information and activate matconvnet
pluginpath = activate_matconvnet();
%% load network
netStruct = load(fullfile(pluginpath, ['netICL' version]));
try
net = dagnn.DagNN.loadobj(netStruct);
catch
net = dagnn_bc.DagNN.loadobj(netStruct);
end
clear netStruct;
%% format network inputs
images = cat(4, images, -images, images(:, end:-1:1, :, :), -images(:, end:-1:1, :, :));
psds = repmat(psds, [1 1 1 4]);
input = {
'in_image', single(images), ...
'in_psdmed', single(psds)
};
if flag_autocorr
autocorrs = repmat(autocorrs, [1 1 1 4]);
input = [input {'in_autocorr', single(autocorrs)}];
end
% check path (sometimes mex file not first which create a problem)
path2vl_nnconv = which('-all', 'vl_nnconv');
if ~ischar(path2vl_nnconv)
if ~isempty(path2vl_nnconv) && isempty(findstr('mex', path2vl_nnconv{1})) && length(path2vl_nnconv) > 1
addpath(fileparts(path2vl_nnconv{2}));
end
end
%% inference
try
% run with mex-files
net.eval(input);
catch
% failed, try to recompile mex-files
disp 'Failed to run ICLabel. Trying to compile MEX-files.'
curr_path = pwd;
cd(fileparts(which('vl_compilenn')));
try
vl_compilenn
cd(curr_path)
disp(['MEX-files successfully compiled. Attempting to run ICLabel again. ' ...
'Please consider emailing Luca Pion-Tonachini at [email protected] to ' ...
'share the compiled MEX-files. They will likely help other EEGLAB users ' ...
'with similar computers as yourself.'])
net.eval(input);
catch
% could not recompile. running natively
% ~80x slower than using mex-files
cd(curr_path)
disp(['MEX-file compilation failed. Further instructions on compiling ' ...
'the MEX-files can be found at http://www.vlfeat.org/matconvnet/install/. ' ...
'Further, you may contact Luca Pion-Tonachini at [email protected] for help. ' ...
'If you solve this issue without help, please consider emailing Luca as the ' ...
'compiled files will likely be useful to other EEGLAB users with similar ' ...
'computers as yourself.'])
warning('ICLabel: defaulting to uncompiled matlab code (about 80x slower)')
net = uncompiled_network_evaluation(net, input);
end
end
%% extract result
labels = squeeze(net.getVar(net.getOutputs()).value)';
labels = reshape(mean(reshape(labels', [], 4), 2), 7, [])';