-
Notifications
You must be signed in to change notification settings - Fork 1
/
crossgen_sensor_1item_TNiNc_20170607.m~
executable file
·239 lines (200 loc) · 9.63 KB
/
crossgen_sensor_1item_TNiNc_20170607.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
%% Cross-generalization of T/Ni/Nc in 1-item displays. Done separately within each ROI
% using only T and Ni (so won't be confounded with object category)
% written by Tanya Wen
% 2017/01/30
dbstop if error
% addpath(genpath('/imaging/tw05'))
% addpath(genpath('/imaging/local/software/spm_cbu_svn/releases/spm12_latest/'))
% addpath(genpath('/imaging/local/software/spm_toolbox/eeglab13_4_3b'))
addpath(genpath('/imaging/local/software/spm_cbu_svn/releases/spm12_fil_r7219/'))
spm('defaults', 'eeg');
% required software: libSVM & RSAtoolbox
workingdir = '/imaging/tw05/Preparatory_Attention_Study/Version3-FullExp';
addpath(genpath(fullfile(workingdir,'software','rsatoolbox')));
addpath(fullfile('/imaging/tw05/Preparatory_Attention_Study','software','libsvm-mat-2.87-1'));
% control variables
libSVMsettings='-s 1 -t 0'; % nu-SVM, linear
nRandomisations=1000;
rmpath('/hpc-software/matlab/r2015a/toolbox/bioinfo/biolearning/'); % to make sure libSVM code is used (not strictly necessary: matlab svmtrain yields exactly same model)
nfolds = 5;
% Define SUBJECT INFORMATION
subs = [1,2,3,4,5,6,7,8,9,10,11,13,15,16,17,18,19,20]; % subject numbers
subjects_dirs = {'meg16_0317/161107','meg16_0319/161110','meg16_0321/161111','meg16_0322/161114','meg16_0325/161115','meg16_0327/161117','meg16_0330/161121','meg16_0332/161122','meg16_0333/161124','meg16_0337/161128','meg16_0339/161129','meg16_0340/161129','meg16_0341/161201','meg16_0343/161202','meg16_0345/161206','meg16_0346/161206','meg16_0348/161208','meg16_0349/161208','meg16_0350/161212','meg16_0352/161213'};
subjnum = [1,2,3,4,5,6,1,2,3,4,5,6,1,2,3,4,5,6,6,2]; % counterbalancing numbers
%% parallelize
nw=32;
scheduler=cbu_scheduler();
scheduler.SubmitArguments='-q compute -l mem=90gb -l walltime=460800';
if isempty(gcp('nocreate')) || ~exist('pool','var') || pool.NumWorkers ~= nw,
if ~isempty(gcp('nocreate'))
delete(gcp('nocreate'))
end
scheduler.NumWorkers=nw;
pool=parpool(scheduler,nw);
end
for sub = [5,11,17,6,18,19]
% go to subject directory
cd(workingdir)
swd = sprintf('sub%02d/%s',sub,subjects_dirs{sub}); % subject working directory
cd(swd)
%% attentional template
% load data
D = spm_eeg_load('caefMattn2_attention_task_block1_raw.mat');
data3D = D.fttimelock.trial;
% mark button press trials
bp_trials = []; % button press trials
devents = D.events;
for trial = 1:numel(D.events)
if ismember(4096,[devents{trial}.value]) == 1
bp_trials = [bp_trials trial];
end
end
D = badtrials(D, bp_trials, 1);
% get good channels
modalities = {'MEGMAG';'MEGPLANAR';'EEG'};
for m = 1:numel(modalities)
chans{m} = indchantype(D,modalities{m},'GOOD');
end
newdata3D = zscore(data3D(:,[chans{:}],:),[],2); % standardize each channel
conds = D.conditions;
%% define labels
% define subject specific pairings
allperms = perms([1 2 3]);
for i = 1:length(allperms)
if rem(subjnum(sub),6)+1 == i
choosetargets = allperms(i,:);
end
end
target1 = sprintf('image%d',choosetargets(1));
target2 = sprintf('image%d',choosetargets(2));
target3 = sprintf('image%d',choosetargets(3));
TNiNc = zeros(1,length(conds));
indexcue1 = strfind(conds,'cue1');
indexcue1 = ~cellfun(@isempty,indexcue1);
for findcue1 = 1:length(indexcue1)
if indexcue1(findcue1) == 1
for i = 1:3 %three events per trial
try % use try because if the last cue does not follow three trials it will crash
if strcmp(conds(findcue1+i),'cue1')==1 || strcmp(conds(findcue1+i),'cue2')==1
break
elseif strcmp(conds(findcue1+i),target1) == 1
TNiNc(findcue1+i) = 1; %target
elseif strcmp(conds(findcue1+i),target2) == 1
TNiNc(findcue1+i) = 2; %inconsistent non-target
elseif strcmp(conds(findcue1+i),target3) == 1
TNiNc(findcue1+i) = 3; %consistent non-target
elseif regexp(conds{findcue1+i},'imageall') == 1
TNiNc(findcue1+i) = -1; %three-item display (cue1)
else TNiNc(findcue1+i) = 0; %opaque
end
catch
end
end
end
end
indexcue2 = strfind(conds,'cue2');
indexcue2 = ~cellfun(@isempty,indexcue2);
for findcue2 = 1:length(indexcue2)
if indexcue2(findcue2) == 1
for i = 1:3 %three events per trial
try
if strcmp(conds(findcue2+i),'cue1')==1 || strcmp(conds(findcue2+i),'cue2')==1
break
elseif strcmp(conds(findcue2+i),target2) == 1
TNiNc(findcue2+i) = 1; %target
elseif strcmp(conds(findcue2+i),target1) == 1
TNiNc(findcue2+i) = 2; %inconsistent non-target
elseif strcmp(conds(findcue2+i),target3) == 1
TNiNc(findcue2+i) = 3; %consistent non-target
elseif regexp(conds{findcue2+i},'imageall') == 1
TNiNc(findcue2+i) = -2; %three-item display (cue2)
else TNiNc(findcue2+i) = 0; %opaque
end
catch
end
end
end
end
T_ind = find(TNiNc==1);
before_T_ind = T_ind-1;
before_T_Ni = find(TNiNc(before_T_ind)==2);
Ni_ind = find(TNiNc==2);
before_Ni_ind = Ni_ind-1;
before_Ni_Ni = find(TNiNc(before_Ni_ind)==1);
D = badtrials(D, bp_trials, 1);
% define targets, inconsistent non-targets
keep = indtrial(D,D.condlist,'GOOD');
type = cell(1,2);
for i = 1:2
type{i} = intersect(find(TNiNc==i),keep);
end
%% smoothing option
smoothing = {'Raw','Smooth'};
for smooth = 1:numel(smoothing)
%% sliding time window
winsizes = 8;%[8,25,50,125]; %32ms,100ms,200ms,500ms
for winsize = winsizes
% set analysis time windows
twin_train = [1 size(newdata3D,3)]; % time of interest
stpsize = 1; %step size
trainwins = [twin_train(1):stpsize:(twin_train(2)-winsize)]';
trainwins(:,2) = trainwins(:,1) + winsize;
ntrains = size(trainwins,1);
twin_test = [1 size(newdata3D,3)]; % time of interest
testwins = [twin_test(1):stpsize:(twin_test(2)-winsize)]';
testwins(:,2) = testwins(:,1) + winsize;
ntests = size(testwins,1);
accuracy_matrix = nan(nfolds,ntrains,ntests);
predicted_vals = cell(nfolds,ntrains,ntests);
for fold = 1: nfolds
testind=[type{1}(fold:nfolds:end) type{2}(fold:nfolds:end)];
labels_test=TNiNc(testind)';
trainind=setdiff([type{:}],testind);
labels_train=TNiNc(trainind)';
parfor islide = 1:ntrains
itrain = newdata3D(:,:,trainwins(islide,1):trainwins(islide,2));
patternsTrain=double(itrain(trainind,:,:));
if smooth == 1 % no smoothing
patternsTrain=reshape(patternsTrain,length(trainind),[]);
elseif smooth == 2 % smoothing
patternsTrain = mean(patternsTrain,3);
end
% classification using linear SVM (train the classifier)
model=svmtrain(labels_train,patternsTrain,libSVMsettings);
for jslide = 1:ntests
itest = newdata3D(:,:,testwins(jslide,1):testwins(jslide,2));
patternsTest = double(itest(testind,:,:));
if smooth == 1 % no smoothing
patternsTest=reshape(patternsTest,length(testind),[]);
elseif smooth == 2 % smoothing
patternsTest = mean(patternsTest,3);
end
% classification using linear SVM (test the classifier)
[predicted,accuracy,~]=svmpredict(labels_test,patternsTest,model);
accuracy_matrix(fold,islide,jslide)=accuracy(1);
predicted_vals{fold,islide,jslide} = predicted;
end % nex slide
end % next slide
end % next fold
output_dir = 'crossgen_sensor_1item_TNiNc';
try cd(output_dir)
catch eval(sprintf('!mkdir %s',output_dir)); cd(output_dir);
end
figure(sub)
imagesc(squeeze(mean(accuracy_matrix,1)));
colorbar;
caxis([1,100]);
% djm:
set(gca,'xticklabel',(cellfun(@str2double,get(gca,'xticklabel'))-1)*stpsize*4-100);
set(gca,'yticklabel',(cellfun(@str2double,get(gca,'yticklabel'))-1)*stpsize*4-100);
xlabel('start of test windows (ms)')
ylabel('start of train windows (ms)')
saveas(gcf,sprintf('CrossGenMatrix%03dms%s_sub%s.png',winsize*4,smoothing{smooth},num2str(sub)));
save(sprintf('CrossGenMatrix%03dms%s_sub%s.mat',winsize*4,smoothing{smooth},num2str(sub)));
close;
cd(workingdir)
cd(swd)
end % winsize
end % smooth
end % sub
delete(gcp)