-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcityscapes_mtl_sl.py
233 lines (198 loc) · 10.3 KB
/
cityscapes_mtl_sl.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
import os
import torch
import fnmatch
import numpy as np
import torch.nn as nn
import torch.optim as optim
import torch.nn.functional as F
import argparse
import torch.utils.data.sampler as sampler
import shutil
from dataset.cityscapesssl import *
from torch.autograd import Variable
from model.segnet_mtl_cityscapes import SegNet
from utils.evaluation import ConfMatrix, DepthMeter, NormalsMeter
import numpy as np
import pdb
from progress.bar import Bar as Bar
from utils import Logger, AverageMeter, accuracy, mkdir_p, savefig
from torch.autograd import Variable
parser = argparse.ArgumentParser(description='Multi-task supervised learning (SegNet)')
parser.add_argument('--type', default='standard', type=str, help='split type: standard, wide, deep')
parser.add_argument('--weight', default='uniform', type=str, help='multi-task weighting: uniform')
parser.add_argument('--dataroot', default='./data/cityscapes2', type=str, help='dataset root')
parser.add_argument('--temp', default=1.0, type=float, help='temperature for DWA (must be positive)')
parser.add_argument('--wlr', default=0.001, type=float, help='initial learning rate')
parser.add_argument('--out', default='./results/cityscapes2', help='Directory to output the result')
parser.add_argument('--alpha', default=1.5, type=float, help='hyper params of GradNorm')
parser.add_argument('--ssl-type', default='randomlabels', type=str, help='ssl type: onelabel, twolabels, randomlabels')
parser.add_argument('--labelroot', default='./data/cityscapes_settings/', type=str, help='partially setting root')
parser.add_argument('--eval-last20', default=0, type=int, help='1 means we evaluate models in the last 20 epochs')
opt = parser.parse_args()
tasks = ['semantic', 'depth']
if not os.path.isdir(opt.out):
mkdir_p(opt.out)
paths = [opt.ssl_type, 'mtl']
for i in range(len(paths)):
opt.out = os.path.join(opt.out, paths[i])
if not os.path.isdir(opt.out):
mkdir_p(opt.out)
stl_performance = {
'full': {'semantic': 74.07, 'depth': 0.0124},
'onelabel': {'semantic': 70.04, 'depth': 0.0140},
}
def save_checkpoint(state, is_best, checkpoint=opt.out, filename='checkpoint.pth.tar'):
filepath = os.path.join(checkpoint, 'mtl_sl_{}_'.format(opt.ssl_type) + filename)
torch.save(state, filepath)
if is_best:
shutil.copyfile(filepath, os.path.join(checkpoint, 'mtl_sl_{}_'.format(opt.ssl_type) + 'model_best.pth.tar'))
title = 'Cityscapes'
logger = Logger(os.path.join(opt.out, 'mtl_sl_{}_log.txt'.format(opt.ssl_type)), title=title)
logger.set_names(['Epoch', 'T.Ls', 'T. mIoU', 'T. Pix', 'T.Ld', 'T.abs', 'T.rel',
'V.Ls', 'V. mIoU', 'V. Pix', 'V.Ld', 'V.abs', 'V.rel', 'Ws', 'Wd'])
# define model, optimiser and scheduler
model = SegNet(type_=opt.type, class_nb=7).cuda()
params = []
params += model.parameters()
optimizer = optim.Adam(params, lr=1e-4)
scheduler = optim.lr_scheduler.StepLR(optimizer, step_size=100, gamma=0.5)
# compute parameter space
def count_parameters(model):
return sum(p.numel() for p in model.parameters() if p.requires_grad)
print('Parameter Space: ABS: {:.1f}, REL: {:.4f}\n'.format(count_parameters(model),
count_parameters(model)/24981069))
print('LOSS FORMAT: SEMANTIC_LOSS MEAN_IOU PIX_ACC | DEPTH_LOSS ABS_ERR ROOT_MSE\n')
# define dataset path
dataset_path = opt.dataroot
if opt.ssl_type == 'onelabel':
labels_weights = torch.load('{}onelabel.pth'.format(opt.labelroot))['labels_weights'].float().cuda()
cityscapes_train_set = Cityscapes_crop(root=dataset_path, train=True, augmentation=True)
cityscapes_test_set = Cityscapes(root=dataset_path, train=False)
batch_size = 8
cityscapes_train_loader = torch.utils.data.DataLoader(
dataset=cityscapes_train_set,
batch_size=batch_size,
shuffle=True, num_workers=4)
cityscapes_test_loader = torch.utils.data.DataLoader(
dataset=cityscapes_test_set,
batch_size=batch_size,
shuffle=True, num_workers=4)
# define parameters
total_epoch = 200
train_batch = len(cityscapes_train_loader)
test_batch = len(cityscapes_test_loader)
T = opt.temp
avg_cost = np.zeros([total_epoch, 12], dtype=np.float32)
lambda_weight = np.zeros([len(tasks), total_epoch])
best_performance = -100
isbest=False
for epoch in range(total_epoch):
index = epoch
cost = np.zeros(12, dtype=np.float32)
scheduler.step()
# apply Dynamic Weight Average
if opt.weight == 'dwa':
if index == 0 or index == 1:
lambda_weight[:, index] = 1.0
else:
w_1 = avg_cost[index - 1, 0] / avg_cost[index - 2, 0]
w_2 = avg_cost[index - 1, 3] / avg_cost[index - 2, 3]
lambda_weight[0, index] = 2 * np.exp(w_1 / T) / (np.exp(w_1 / T) + np.exp(w_2 / T))
lambda_weight[1, index] = 2 * np.exp(w_2 / T) / (np.exp(w_1 / T) + np.exp(w_2 / T))
bar = Bar('Training', max=train_batch)
# iteration for all batches
model.train()
cityscapes_train_dataset = iter(cityscapes_train_loader)
for k in range(train_batch):
train_data, train_label, train_depth, image_index = cityscapes_train_dataset.next()
train_data, train_label = train_data.cuda(), train_label.type(torch.LongTensor).cuda()
train_depth = train_depth.cuda()
train_pred, logsigma, feat = model(train_data)
loss = 0
if opt.ssl_type != 'full':
for ind_ in range(len(image_index)):
w = labels_weights[image_index[ind_]].clone()
train_loss_ = model.model_fit(train_pred[0][ind_].unsqueeze(0), train_label[ind_].unsqueeze(0), train_pred[1][ind_].unsqueeze(0), train_depth[ind_].unsqueeze(0))
loss_ = 0
for i in range(len(tasks)):
if w[i] == 1:
loss_ = loss_ + train_loss_[i]
loss = loss + loss_ / len(image_index)
train_loss = model.model_fit(train_pred[0], train_label, train_pred[1], train_depth)
if opt.ssl_type == 'full':
w = torch.ones(len(tasks)).float().cuda()
loss = sum(train_loss[i] * w[i].data for i in range(len(tasks)))
optimizer.zero_grad()
loss.backward()
optimizer.step()
cost[0] = train_loss[0].item()
cost[1] = model.compute_miou(train_pred[0], train_label).item()
cost[2] = model.compute_iou(train_pred[0], train_label).item()
cost[3] = train_loss[1].item()
cost[4], cost[5] = model.depth_error(train_pred[1], train_depth)
avg_cost[index, :6] += cost[:6] / train_batch
bar.suffix = '({batch}/{size}) | LossS: {loss_s:.4f} | LossD: {loss_d:.4f} | Ws: {ws:.4f} | Wd: {wd:.4f}'.format(
batch=k + 1,
size=train_batch,
loss_s=cost[1],
loss_d=cost[3],
ws=w[0].data,
wd=w[1].data,
)
bar.next()
bar.finish()
if opt.eval_last20 == 0:
evaluate = True
elif opt.eval_last20 and (epoch+1) > (total_epoch - 20):
evaluate = True
else:
evaluate = False
if evaluate:
# evaluating test data
model.eval()
conf_mat = ConfMatrix(model.class_nb)
depth_mat = DepthMeter()
with torch.no_grad(): # operations inside don't track history
cityscapes_test_dataset = iter(cityscapes_test_loader)
for k in range(test_batch):
test_data, test_label, test_depth = cityscapes_test_dataset.next()
test_data, test_label = test_data.cuda(), test_label.type(torch.LongTensor).cuda()
test_depth = test_depth.cuda()
test_pred, _, _ = model(test_data)
test_loss = model.model_fit(test_pred[0], test_label, test_pred[1], test_depth)
conf_mat.update(test_pred[0].argmax(1).flatten(), test_label.flatten())
depth_mat.update(test_pred[1], test_depth)
cost[6] = test_loss[0].item()
cost[9] = test_loss[1].item()
avg_cost[index, 6:] += cost[6:] / test_batch
avg_cost[index, 7:9] = conf_mat.get_metrics()
depth_metric = depth_mat.get_score()
avg_cost[index, 10], avg_cost[index, 11] = depth_metric['l1'], depth_metric['rmse']
mtl_performance = 0.0
mtl_performance += (avg_cost[index, 7]* 100 - stl_performance[opt.ssl_type]['semantic']) / stl_performance[opt.ssl_type]['semantic']
mtl_performance -= (avg_cost[index, 10] - stl_performance[opt.ssl_type]['depth']) / stl_performance[opt.ssl_type]['depth']
mtl_performance = mtl_performance / len(tasks) * 100
isbest = mtl_performance > best_performance
print('Epoch: {:04d} | TRAIN: {:.4f} {:.4f} {:.4f} | {:.4f} {:.4f} {:.4f} '
'TEST: {:.4f} {:.4f} {:.4f} | {:.4f} {:.4f} {:.4f}'
.format(index, avg_cost[index, 0], avg_cost[index, 1], avg_cost[index, 2], avg_cost[index, 3],
avg_cost[index, 4], avg_cost[index, 5], avg_cost[index, 6], avg_cost[index, 7], avg_cost[index, 8], avg_cost[index, 9],
avg_cost[index, 10], avg_cost[index, 11]))
logger.append([index, avg_cost[index, 0], avg_cost[index, 1], avg_cost[index, 2], avg_cost[index, 3],
avg_cost[index, 4], avg_cost[index, 5], avg_cost[index, 6], avg_cost[index, 7], avg_cost[index, 8], avg_cost[index, 9],
avg_cost[index, 10], avg_cost[index, 11],
lambda_weight[0, index], lambda_weight[1, index]])
if isbest:
best_performance = mtl_performance
print_index = index
save_checkpoint({
'epoch': epoch + 1,
'state_dict': model.state_dict(),
'best_performance': best_performance,
'optimizer' : optimizer.state_dict(),
}, isbest)
print('Epoch: {:04d} | TRAIN: {:.4f} {:.4f} {:.4f} | {:.4f} {:.4f} {:.4f} '
'TEST: {:.4f} {:.4f} {:.4f} | {:.4f} {:.4f} {:.4f}'
.format(print_index, avg_cost[print_index, 0], avg_cost[print_index, 1], avg_cost[print_index, 2], avg_cost[print_index, 3],
avg_cost[print_index, 4], avg_cost[print_index, 5], avg_cost[print_index, 6], avg_cost[print_index, 7], avg_cost[print_index, 8], avg_cost[print_index, 9],
avg_cost[print_index, 10], avg_cost[print_index, 11]))