forked from jyang635/EEG_decoding
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEEG_VAE_compare.py
More file actions
234 lines (204 loc) · 10.7 KB
/
Copy pathEEG_VAE_compare.py
File metadata and controls
234 lines (204 loc) · 10.7 KB
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
import os
import torch
from torch.utils.data import DataLoader
import numpy as np
import torch.nn as nn
import re
import argparse
import csv
from diffusers.pipelines.stable_diffusion_xl.pipeline_stable_diffusion_xl import *
from EEG_low_level_encoders import EEGConformer_Deconv,encoder_low_level,encoder_low_level_channelwise,ATMS_Deconv,Config
from EEG_ThingsData import load_multiple_subjects
from EEG_Image_metrics import compute_metrics,save_model_results_to_csv
# from torchmetrics.image import LearnedPerceptualImagePatchSimilarity
# from torchmetrics.image import StructuralSimilarityIndexMeasure
from torchvision import transforms
import torchvision.transforms as T
def extract_id_from_string(s):
match = re.search(r'\d+$', s)
if match:
return int(match.group())
return None
def VAE_reconstruction(eegmodel, dataloader, vae,device,image_size=(256, 256),model_type='ATMS_Deconv',subject_id=None):
eegmodel.eval()
recon_list=[]
image_list=[]
with torch.no_grad():
for batch_idx, (img, eeg_data) in enumerate(dataloader):
eeg_data = eeg_data.to(device)
if model_type.startswith('ATMS'):
subject_ids = extract_id_from_string(subject_id)
batch_size =eeg_data.size(0)
subject_ids = torch.full((batch_size,), subject_ids, dtype=torch.long).to(device)
eeg_features = eegmodel(eeg_data,subject_ids).float()
else:
eeg_features = eegmodel(eeg_data).float()
image_list.append(img)
# z= eeg_features.to('cuda:1')
z= eeg_features.to(device)
x_rec = vae.decode(z).sample
recon_list.append(x_rec.cpu())
print(f"Batch {batch_idx+1}/{len(dataloader)} processed")
del z,x_rec
torch.cuda.empty_cache()
recon_list = torch.cat(recon_list, dim=0)
#resize recon_list to the same size as image_list
# recon_list=transforms.Resize((img.shape[2], img.shape[3]))(recon_list)
recon_list= (recon_list+1)/2 # This is to make sure the recon_list is in the range of 0-1
recon_list=transforms.Resize(image_size)(recon_list)
recon_list=recon_list.clamp(0,1)
### make sure the recon_list is in the range of 0-1
image_list = torch.cat(image_list, dim=0)
image_list=transforms.Resize((256,256))(image_list)
image_list=image_list.clamp(0,1)
# recon_list=positive_images(recon_list)
return image_list,recon_list
def main():
# Argument parser setup
parser = argparse.ArgumentParser(description='Conformer+deconv')
# Add your command-line arguments
parser.add_argument('--eeg_folder', type=str, default='/home/yjk122/IP_temp/EEG_Image_decode/Preprocessed_data_250Hz')
parser.add_argument('--img_folder', type=str, default='/home/yjk122/IP_temp/ThingsEEG/image')
parser.add_argument('--model_path', type=str, default='/home/yjk122/IP_temp/EEG_Image_decode/Generation/models',help='Path to the pre-trained model')
parser.add_argument('--subject_id', type=str, default='sub-01', help='Subject ID to analyze')
parser.add_argument('--start_time', type=float, default=0.0, help='Start time for analysis window')
parser.add_argument('--end_time', type=float, default=1.0, help='End time for analysis window')
parser.add_argument('--batch_size', type=int, default=10, help='Batch size for training')
parser.add_argument('--model', type=str,choices=['encoder_low_level', 'encoder_low_level_channelwise', 'EEGConformer','ATMS'], default='encoder_low_level')
parser.add_argument('--seed', type=int, default=1, help='Random seed')
parser.add_argument('--channels', type=str, default='All',
help='EEG channels to use (comma-separated)')
parser.add_argument('--image_size', type=str, default="256,256", help='size of the image'),
parser.add_argument('--gpu', type=str, default='0', help='GPU to use')
parser.add_argument('--average_eeg', action='store_true', help='Whether to average EEG data')
args = parser.parse_args()
device = torch.device(f"cuda:{args.gpu}" if torch.cuda.is_available() else "cpu")
print(f"Using {device} device")
image_size = args.image_size.split(',')
image_size = (3,int(image_size[0]), int(image_size[1]))
config = {
"eeg_folder": args.eeg_folder,
"img_folder": args.img_folder,
"model_type": args.model,
"model_path": args.model_path,
"subject_id": args.subject_id.split(','),
"time_window": [args.start_time, args.end_time],
"channels": args.channels.split(','),
"batch_size": args.batch_size,
"image_size": image_size,
"seed": args.seed,
'average_eeg': args.average_eeg,
"device": device
}
# Load the EEG data and the image data
EEG_dir = config['eeg_folder']
img_dir = config['img_folder']
img_metadata = np.load(os.path.join(img_dir, 'image_metadata.npy'), allow_pickle=True).item()
test_d,ntimes = load_multiple_subjects(subject_ids=config['subject_id'], eeg_dir=EEG_dir, img_dir=img_dir,
img_metadata=img_metadata, start_time=config['time_window'][0],
end_time=config['time_window'][1],desired_channels=config['channels'],
image_size=(config['image_size'][1],config['image_size'][2]),compressor=None,training=False,average=config['average_eeg'])
# Load the pre-trained model
if config['channels'][0] == 'All':
n_channels = len(test_d[0][1])
else:
n_channels = len(config['channels'])
if config['model_type']== 'encoder_low_level':
eeg_model = encoder_low_level(num_channels=n_channels, sequence_length=ntimes).to(device)
elif config['model_type'] == 'EEGConformer':
eeg_model = EEGConformer_Deconv(n_outputs=2, n_chans=n_channels, n_filters_time=90,
filter_time_length=20, pool_time_length=5, pool_time_stride=5,
drop_prob=0.5, att_depth=3, att_heads=30, att_drop_prob=0.5,
final_fc_length='auto', return_features=False, n_times=ntimes,
chs_info=None, input_window_seconds=None, sfreq=None, n_classes=None,
n_channels=None, input_window_samples=None).to(device)
elif config['model_type'] == 'encoder_low_level_channelwise':
eeg_model = encoder_low_level(num_channels=n_channels, sequence_length=ntimes).to(device)
elif config['model_type'] == 'ATMS':
ATM_config = Config(seq_len=ntimes,ATMoutput=1024)
eeg_model=ATMS_Deconv(ATM_config)
# elif config['model_type'] == 'ATMS_Res_attention':
# ATM_config = Config(seq_len=ntimes,ATMoutput=1024)
# eeg_model=ATMS_Res_attention(ATM_config)
else:
raise ValueError(f"Unknown model type: {config['model_type']}")
#get the number of parameters in the model
num_params = sum(p.numel() for p in eeg_model.parameters() if p.requires_grad)
# m_path=config['model_path']
path_modelstate=f"{config['model_path']}/low_level/{config['model_type']}/{config['subject_id'][0]}/C{n_channels}-{config['time_window'][1]}s-avg{config['average_eeg']}"
matching_files = [f for f in os.listdir(path_modelstate) if f.startswith('model')][0]
model_path = os.path.join(path_modelstate, matching_files)
# Load the model state
checkpoint = torch.load(model_path, map_location=device,weights_only=True)
eeg_model.load_state_dict(checkpoint)
eeg_model.to(device)
eeg_model.eval()
test_loader = DataLoader(test_d, batch_size=config['batch_size'], shuffle=False)
# Load the VAE model
pipe = DiffusionPipeline.from_pretrained("stabilityai/stable-diffusion-xl-base-1.0", torch_dtype=torch.float, variant="fp16")
if hasattr(pipe, 'vae'):
for param in pipe.vae.parameters():
param.requires_grad = False
vae = pipe.vae.to(device)
# vae = pipe.vae
del pipe
vae.requires_grad_(False)
vae.eval()
print(f"VAE loaded")
torch.cuda.empty_cache()
# Get the GT images and the eeg embeddings
image_list,recon_list = VAE_reconstruction(eeg_model, test_loader,vae, device,model_type=config['model_type'],subject_id=config['subject_id'][0])
del vae
torch.cuda.empty_cache()
print(f"Reconstructions obtained for {config['model_type']} {config['subject_id'][0]}")
# metrics_models_dict= {config['model_type']: 0}
# metrics_stats_dict = {config['model_type']: 0 }
# Create a directory for the reconstructed images if it doesn't exist
recon_dir = os.path.join(config['model_path'], f"Lowlevel_reconstructions/{config['model_type']}_{config['subject_id'][0]}_avg{config['average_eeg']}")
os.makedirs(recon_dir, exist_ok=True)
# Convert tensor images to PIL images and save them
to_pil = T.ToPILImage()
for i in range(min(30, recon_list.shape[0])):
img = to_pil(recon_list[i])
img.save(os.path.join(recon_dir, f"recon_{i}.png"))
# # Also save the original images for comparison
# for i in range(min(30, image_list.shape[0])):
# img = to_pil(image_list[i])
# img.save(os.path.join(recon_dir, f"original_{i}.png"))
print(f"Saved first 30 reconstructions to {recon_dir}")
metrics_results = compute_metrics(image_list, recon_list,device)
# Save the metrics to a CSV file
csv_file_path =os.path.join(config['model_path'], "lowlevel_model_results.csv")
# Check if the file exists
if not os.path.exists(csv_file_path):
# Define the header for the CSV file
header = [
"model_name",
"subject_id",
"channels",
"start_time",
"end_time",
"number_of_images",
"number_of_parameters",
"Image_size",
"mse",
"lpips",
"pixel_corr",
"ssim",
"Alex_2",
"Alex_5",
"Inception",
"CLIP",
"SwAV"
]
# Create the CSV file and write the header
with open(csv_file_path, mode="w", newline="") as file:
writer = csv.DictWriter(file, fieldnames=header)
writer.writeheader()
print(f"CSV file '{csv_file_path}' created successfully.")
else:
print(f"CSV file '{csv_file_path}' already exists.")
save_model_results_to_csv(metrics_results, csv_file_path, config,num_params,num_images=len(test_d))
print(f"Results for {config['model_type']} saved to {csv_file_path}")
if __name__ == '__main__':
main()