-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
executable file
·370 lines (317 loc) · 17.4 KB
/
main.py
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
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
from __future__ import print_function
import argparse
import pdb
import os
import math
# internal imports
from utils.file_utils import save_pkl, load_pkl
from utils.utils import *
from utils.core_utils import train
from utils.core_utils_tuning import train_tuning
from utils.core_utils_sampling import train_sampling
#from utils.core_utils_sampling_tuning import train_sampling_tuning
from datasets.dataset_generic import Generic_WSI_Classification_Dataset, Generic_MIL_Dataset
# pytorch imports
import torch
from torch.utils.data import DataLoader, sampler
import torch.nn as nn
import torch.nn.functional as F
import pandas as pd
import numpy as np
from functools import partial
from ray import tune
from ray.air.config import RunConfig
import ray
from utils.tuning_utils import TrialPlateauStopper
import cProfile, pstats
def main():
# create results directory if necessary
if not os.path.isdir(args.results_dir):
os.mkdir(args.results_dir)
if args.k_start == -1:
start = 0
else:
start = args.k_start
if args.k_end == -1:
end = args.k
else:
end = args.k_end
if args.tuning:
ray.init(num_gpus=1)
if args.hardware=='DGX':
hardware={"cpu":10,"gpu":0.125}
else:
hardware={"cpu":2,"gpu":0.5}
if args.sampling:
if args.no_inst_cluster:
search_space = {
"reg": tune.loguniform(1e-10,1e-2),
"drop_out": tune.uniform(0.00,0.99),
"lr": tune.loguniform(1e-5,1e-2),
"no_sample": tune.choice([0,10,20,30,40]),
"weight_smoothing": tune.loguniform(0.0001,0.5),
"resampling_iterations": tune.choice([2,4,6,8,10,12,16]),
"sampling_neighbors": tune.choice([4,8,16,32,64]),
"sampling_random": tune.uniform(0.25,0.95),
"sampling_random_delta": tune.loguniform(0.0001,0.5)
}
else:
search_space = {
"reg": tune.loguniform(1e-10,1e-2),
"drop_out": tune.uniform(0.00,0.99),
"lr": tune.loguniform(1e-5,1e-2),
"B": tune.choice([4,6,16,32,64]),
"no_sample": tune.choice([0,10,20,30,40]),
"weight_smoothing": tune.loguniform(0.0001,0.5),
"resampling_iterations": tune.choice([2,4,6,8,10,12,16]),
"sampling_neighbors": tune.choice([4,8,16,32,64]),
"sampling_random": tune.uniform(0.25,0.95),
"sampling_random_delta": tune.loguniform(0.0001,0.5)
}
else:
if args.no_inst_cluster:
search_space = {
"reg": tune.loguniform(1e-10,1e-2),
"drop_out": tune.uniform(0.00,0.99),
"lr": tune.loguniform(1e-5,1e-2)
}
else:
search_space = {
"reg": tune.loguniform(1e-10,1e-2),
"drop_out": tune.uniform(0.00,0.99),
"lr": tune.loguniform(1e-5,1e-2),
"B": tune.choice([4,6,16,32,64]),
}
scheduler = tune.schedulers.ASHAScheduler(
metric="loss",
mode="min",
grace_period=min(50,args.max_epochs),
reduction_factor=3,
max_t=args.max_epochs)
reporter = tune.CLIReporter(
metric_columns=["loss", "auc", "training_iteration"],
max_report_frequency=5,
max_progress_rows=20,
metric="loss",
mode="min",
sort_by_metric=True)
all_test_auc = []
all_val_auc = []
all_test_acc = []
all_val_acc = []
folds = np.arange(start, end)
for i in folds:
seed_torch(args.seed)
train_dataset, val_dataset, test_dataset = dataset.return_splits(from_id=False,
csv_path='{}/splits_{}.csv'.format(args.split_dir, i))
datasets = (train_dataset, val_dataset, test_dataset)
##class_counts to be used in balanced cross entropy if enabled
class_counts=0
if args.bag_loss == 'balanced_ce':
class_counts_train=dataset.count_by_class(csv_path='{}/splits_{}.csv'.format(args.split_dir, i))
class_counts_val=dataset.count_by_class(csv_path='{}/splits_{}.csv'.format(args.split_dir, i),split='val')
class_counts=[class_counts_train[i]+class_counts_val[i] for i in range(len(class_counts_train))]
if args.tuning:
stopper=TrialPlateauStopper(metric="loss",mode="min",num_results=20,grace_period=20)
if args.sampling:
tuner = tune.Tuner(tune.with_resources(partial(train_sampling,datasets=datasets,cur=i,class_counts=class_counts,args=args),hardware),param_space=search_space, run_config=RunConfig(name="test_run",stop=stopper, progress_reporter=reporter),tune_config=tune.TuneConfig(scheduler=scheduler,num_samples=args.num_tuning_experiments))
else:
tuner = tune.Tuner(tune.with_resources(partial(train_tuning,datasets=datasets,cur=i,class_counts=class_counts,args=args),hardware),param_space=search_space, run_config=RunConfig(name="test_run",stop=stopper, progress_reporter=reporter),tune_config=tune.TuneConfig(scheduler=scheduler,num_samples=args.num_tuning_experiments))
results = tuner.fit()
results_df=results.get_dataframe()
results_df.to_csv(args.tuning_output_file,index=False)
best_trial = results.get_best_result("loss", "min","last-10-avg")
print("best trial:", best_trial)
print("Best trial config: {}".format(best_trial.config))
print("Best trial final loss: {}".format(best_trial.metrics["loss"]))
print("Best trial final auc: {}".format(best_trial.metrics["auc"]))
print("Best trial final acuracy: {}".format(best_trial.metrics["accuracy"]))
else:
if args.sampling:
results, test_auc, val_auc, test_acc, val_acc = train_sampling(None,datasets, i, class_counts, args)
else:
results, test_auc, val_auc, test_acc, val_acc = train(datasets, i, class_counts, args)
all_test_auc.append(test_auc)
all_val_auc.append(val_auc)
all_test_acc.append(test_acc)
all_val_acc.append(val_acc)
#write results to pkl
filename = os.path.join(args.results_dir, 'split_{}_results.pkl'.format(i))
save_pkl(filename, results)
if not args.tuning:
final_df = pd.DataFrame({'folds': folds, 'test_auc': all_test_auc,
'val_auc': all_val_auc, 'test_acc': all_test_acc, 'val_acc' : all_val_acc})
if len(folds) != args.k:
save_name = 'summary_partial_{}_{}.csv'.format(start, end)
else:
save_name = 'summary.csv'
final_df.to_csv(os.path.join(args.results_dir, save_name))
# Generic training settings
parser = argparse.ArgumentParser(description='Configurations for WSI Training')
parser.add_argument('--data_root_dir', type=str, default=None,
help='directory containing features folders')
parser.add_argument('--features_folder', type=str, default=None,
help='folder within data_root_dir containing the features - must contain pt_files/h5_files subfolder')
parser.add_argument('--coords_path', type=str, default=None,
help='path to coords pt files if needed')
parser.add_argument('--max_epochs', type=int, default=200,
help='maximum number of epochs to train (default: 200)')
parser.add_argument('--min_epochs', type=int, default=20,
help='minimum number of epochs to train (default: 20)')
parser.add_argument('--lr', type=float, default=1e-4,
help='learning rate (default: 0.0001)')
parser.add_argument('--label_frac', type=float, default=1.0,
help='fraction of training labels (default: 1.0)')
parser.add_argument('--reg', type=float, default=1e-5,
help='weight decay (default: 1e-5)')
parser.add_argument('--seed', type=int, default=1,
help='random seed for reproducible experiment (default: 1)')
parser.add_argument('--k', type=int, default=10, help='number of folds (default: 10)')
parser.add_argument('--k_start', type=int, default=-1, help='start fold (default: -1, last fold)')
parser.add_argument('--k_end', type=int, default=-1, help='end fold (default: -1, first fold)')
parser.add_argument('--results_dir', default='./results', help='results directory (default: ./results)')
parser.add_argument('--split_dir', type=str, default=None,
help='manually specify the set of splits to use, '
+'instead of infering from the task and label_frac argument (default: None)')
parser.add_argument('--log_data', action='store_true', default=False, help='log data using tensorboard')
parser.add_argument('--continue_training', action='store_true', default=False, help='Continue model training from latest checkpoint')
parser.add_argument('--testing', action='store_true', default=False, help='debugging tool')
parser.add_argument('--early_stopping', action='store_true', default=False, help='enable early stopping')
parser.add_argument('--opt', type=str, choices = ['adam', 'sgd'], default='adam')
parser.add_argument('--drop_out', type=float, default=0.25, help='dropout p=0.25')
parser.add_argument('--bag_loss', type=str, choices=['svm', 'ce', 'balanced_ce'], default='ce',
help='slide-level classification loss function (default: ce)')
parser.add_argument('--model_type', type=str, choices=['clam_sb', 'clam_mb', 'mil'], default='clam_sb',
help='type of model (default: clam_sb, clam w/ single attention branch)')
parser.add_argument('--exp_code', type=str, help='experiment code for saving results')
parser.add_argument('--weighted_sample', action='store_true', default=False, help='enable weighted sampling')
parser.add_argument('--model_size', type=str, choices=['small', 'big'], default='small', help='size of model, does not affect mil')
parser.add_argument('--task', type=str, choices=['ovarian_5class','ovarian_1vsall','nsclc'])
parser.add_argument('--profile', action='store_true', default=False,
help='show profile of longest running code sections')
parser.add_argument('--profile_rows', type=int, default=10, help='number of rows to show from profiler (requires --profile to show any)')
parser.add_argument('--csv_path',type=str,default=None,help='path to dataset_csv file')
## sampling options
parser.add_argument('--sampling', action='store_true', default=False, help='sampling for faster training')
parser.add_argument('--sampling_type', type=str, choices=['spatial','textural','newest'],default='spatial',help='type of sampling to use')
parser.add_argument('--samples_per_iteration', type=int, default=100, help='number of patches to sample per sampling iteration')
parser.add_argument('--resampling_iterations', type=int, default=10, help='number of resampling iterations (not including the initial sample)')
parser.add_argument('--sampling_random', type=float, default=0.2, help='proportion of samples which are completely random per iteration')
parser.add_argument('--sampling_random_delta',type=float, default=0.02, help='reduction in sampling_random per iteration')
parser.add_argument('--sampling_neighbors', type=int, default=20, help='number of nearest neighbors to consider when resampling')
parser.add_argument('--final_sample_size',type=int,default=100,help='number of patches for final sample')
parser.add_argument('--texture_model',type=str, choices=['resnet50','levit_128s'], default='resnet50',help='model to use for feature extraction in textural sampling')
parser.add_argument('--sampling_average',action='store_true',default=False,help='Take the sampling weights as averages rather than maxima to leverage more learned information')
parser.add_argument('--weight_smoothing',type=float,default=0.15,help='Power applied to attention scores to generate sampling weights')
parser.add_argument('--use_all_samples',action='store_true', default=False, help='Use all previous samples in the final sample step')
parser.add_argument('--no_sampling_epochs',type=int,default=20,help='number of epochs to complete full slide processing before beginning sampling')
parser.add_argument('--fully_random',action='store_true', default=False, help='Take entirely random samples (no active sampling)')
## tuning options
parser.add_argument('--tuning', action='store_true', default=False, help='run hyperparameter tuning')
parser.add_argument('--tuning_output_file',type=str,default="tuning_results/tuning_output.csv",help="where to save tuning outputs")
parser.add_argument('--num_tuning_experiments',type=int,default=100,help="number of tuning experiments")
parser.add_argument('--hardware',type=str, choices=['DGX','PC'], default='DGX',help='sets amount of CPU and GPU to use per experiment')
### CLAM specific options
parser.add_argument('--no_inst_cluster', action='store_true', default=False,
help='disable instance-level clustering')
parser.add_argument('--inst_loss', type=str, choices=['svm', 'ce', None], default=None,
help='instance-level clustering loss function (default: None)')
parser.add_argument('--subtyping', action='store_true', default=False,
help='subtyping problem')
parser.add_argument('--bag_weight', type=float, default=0.7,
help='clam: weight coefficient for bag-level loss (default: 0.7)')
parser.add_argument('--B', type=int, default=8, help='numbr of positive/negative patches to sample for clam')
args = parser.parse_args()
device=torch.device("cuda" if torch.cuda.is_available() else "cpu")
def seed_torch(seed=7):
import random
random.seed(seed)
os.environ['PYTHONHASHSEED'] = str(seed)
np.random.seed(seed)
torch.manual_seed(seed)
if device.type == 'cuda':
torch.cuda.manual_seed(seed)
torch.cuda.manual_seed_all(seed) # if you are using multi-GPU.
torch.backends.cudnn.benchmark = False
torch.backends.cudnn.deterministic = True
seed_torch(args.seed)
encoding_size = 1024
settings = {'num_splits': args.k,
'k_start': args.k_start,
'k_end': args.k_end,
'task': args.task,
'max_epochs': args.max_epochs,
'results_dir': args.results_dir,
'lr': args.lr,
'experiment': args.exp_code,
'reg': args.reg,
'label_frac': args.label_frac,
'bag_loss': args.bag_loss,
'seed': args.seed,
'model_type': args.model_type,
'model_size': args.model_size,
"drop_out": args.drop_out,
"use_early_stopping": args.early_stopping,
"use_sampling": args.sampling,
'weighted_sample': args.weighted_sample,
'opt': args.opt}
if args.model_type in ['clam_sb', 'clam_mb']:
settings.update({'bag_weight': args.bag_weight,
'inst_loss': args.inst_loss,
'B': args.B})
if args.sampling:
settings.update({'sampling_type': args.sampling_type})
print('\nLoad Dataset')
if args.task == 'ovarian_5class':
args.n_classes=5
args.label_dict = {'high_grade':0,'low_grade':1,'clear_cell':2,'endometrioid':3,'mucinous':4}
if args.model_type in ['clam_sb', 'clam_mb']:
assert args.subtyping
elif args.task == 'ovarian_1vsall':
args.n_classes=2
args.label_dict = {'high_grade':0,'low_grade':1,'clear_cell':1,'endometrioid':1,'mucinous':1}
elif args.task == 'nsclc':
args.n_classes=2
args.label_dict = {'luad':0,'lusc':1}
else:
raise NotImplementedError
dataset = Generic_MIL_Dataset(csv_path = args.csv_path,
data_dir= os.path.join(args.data_root_dir, args.features_folder),
coords_path = args.coords_path,
shuffle = False,
seed = args.seed,
print_info = True,
label_dict = args.label_dict,
patient_strat=False,
ignore=[])
if not os.path.isdir(args.results_dir):
os.mkdir(args.results_dir)
args.results_dir = os.path.join(args.results_dir, str(args.exp_code) + '_s{}'.format(args.seed))
if not os.path.isdir(args.results_dir):
os.mkdir(args.results_dir)
if args.split_dir is None:
args.split_dir = os.path.join('splits', args.task+'_{}'.format(int(args.label_frac*100)))
else:
args.split_dir = os.path.join('splits', args.split_dir)
print('split_dir: ', args.split_dir)
assert os.path.isdir(args.split_dir)
settings.update({'split_dir': args.split_dir})
with open(args.results_dir + '/experiment_{}.txt'.format(args.exp_code), 'w') as f:
print(settings, file=f)
f.close()
print("################# Settings ###################")
for key, val in settings.items():
print("{}: {}".format(key, val))
if __name__ == "__main__":
if args.profile:
profiler = cProfile.Profile()
profiler.enable()
results = main()
print("max gpu mem usage:",torch.cuda.max_memory_allocated())
profiler.disable()
stats = pstats.Stats(profiler).sort_stats('cumtime')
stats.print_stats(args.profile_rows)
else:
results = main()
print("finished!")
print("end script")