-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.py
169 lines (133 loc) · 5.15 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
import torch
import torch.nn as nn
import torch.nn.functional as F
from torchmetrics import Accuracy
from tqdm import tqdm
import os
import logging
import warnings
import random
import numpy as np
from parse_args import parse_arguments
from dataset import PACS
from models.as_module import ActivationShapingModule
from models.resnet import BaseResNet18
from models.ras_resnet import RASResNet18
from models.da_resnet import DAResNet18
from models.load import load_model
from checkpoints import load_epoch_from_checkpoint
from checkpoints import save_checkpoint
from globals import CONFIG
from globals import update_config
def unpack_batch_to_device(batch):
x = batch[0]
y = batch[1]
return x.to(CONFIG.device), y.to(CONFIG.device)
@torch.no_grad()
def evaluate(model, data):
model.eval()
acc_meter = Accuracy(task="multiclass", num_classes=CONFIG.num_classes)
acc_meter = acc_meter.to(CONFIG.device)
loss = [0.0, 0]
for x, y in tqdm(data):
with torch.autocast(
device_type=CONFIG.device, dtype=torch.float16, enabled=True
):
x, y = x.to(CONFIG.device), y.to(CONFIG.device)
logits = model(x)
acc_meter.update(logits, y)
loss[0] += F.cross_entropy(logits, y).item()
loss[1] += x.size(0)
accuracy = acc_meter.compute()
loss = loss[0] / loss[1]
logging.info(f"Accuracy: {100 * accuracy:.2f} - Loss: {loss}")
def train(model, data):
# Create optimizers & schedulers
optimizer = torch.optim.SGD(
model.parameters(), weight_decay=0.0005, momentum=0.9, nesterov=True, lr=0.001
)
scheduler = torch.optim.lr_scheduler.StepLR(
optimizer, step_size=int(CONFIG.epochs * 0.8), gamma=0.1
)
scaler = torch.cuda.amp.GradScaler(enabled=True)
# Load checkpoint (if it exists)
cur_epoch = load_epoch_from_checkpoint(model, scheduler, optimizer)
# Optimization loop
for epoch in range(cur_epoch, CONFIG.epochs):
for batch_idx, batch in enumerate(tqdm(data["train"])):
if CONFIG.experiment in ["domain_adapt"]:
with torch.autocast(
device_type=CONFIG.device, dtype=torch.float16, enabled=True
):
# Eval mode to compute activation maps for the target domain without updating the weights
model.eval()
targ_x = batch[2].to(CONFIG.device)
model.store_activation_maps(targ_x)
model.train()
# Compute loss
with torch.autocast(
device_type=CONFIG.device, dtype=torch.float16, enabled=True
):
if CONFIG.experiment in ["baseline"]:
x, y = unpack_batch_to_device(batch)
loss = F.cross_entropy(model(x), y)
elif CONFIG.experiment in ["random_maps"]:
x, y = unpack_batch_to_device(batch)
model.register_random_shaping_hooks()
loss = F.cross_entropy(model(x), y)
model.remove_hooks()
elif CONFIG.experiment in ["domain_adapt"]:
src_x, src_y = x, y = unpack_batch_to_device(batch)
model.register_shaping_hooks()
loss = F.cross_entropy(model(src_x), src_y)
model.remove_shaping_hooks()
# Optimization step
scaler.scale(loss / CONFIG.grad_accum_steps).backward()
if ((batch_idx + 1) % CONFIG.grad_accum_steps == 0) or (
batch_idx + 1 == len(data["train"])
):
scaler.step(optimizer)
optimizer.zero_grad(set_to_none=True)
scaler.update()
scheduler.step()
# Test current epoch
logging.info(f"[TEST @ Epoch={epoch}]")
evaluate(model, data["test"])
# Save checkpoint
save_checkpoint(epoch, model, scheduler, optimizer)
def main():
# Load dataset
data = PACS.load_data()
model = load_model(CONFIG.experiment)
model.to(CONFIG.device)
if not CONFIG.test_only:
train(model, data)
else:
evaluate(model, data["test"])
if __name__ == "__main__":
warnings.filterwarnings("ignore", category=UserWarning)
# Parse arguments
args = parse_arguments()
update_config(args)
# Setup output directory
CONFIG.save_dir = os.path.join("record", CONFIG.experiment_name)
os.makedirs(CONFIG.save_dir, exist_ok=True)
# Setup logging
logging.basicConfig(
filename=os.path.join(
CONFIG.save_dir,
f"{CONFIG.dataset_args['target_domain']}_{CONFIG.layers}_{CONFIG.mask_ratio}_eps{CONFIG.epsilon}_tk{CONFIG.topK}-{CONFIG.tk_treshold}_nb{CONFIG.no_binarize}.txt",
),
format="%(message)s",
level=logging.INFO,
filemode="a",
)
# Set experiment's device & deterministic behavior
if CONFIG.cpu:
CONFIG.device = torch.device("cpu")
torch.manual_seed(CONFIG.seed)
random.seed(CONFIG.seed)
np.random.seed(CONFIG.seed)
torch.backends.cudnn.benchmark = True
torch.use_deterministic_algorithms(mode=True, warn_only=True)
main()