car-detection-bayes/train.py

204 lines
7.3 KiB
Python
Raw Normal View History

2018-08-26 08:51:39 +00:00
import argparse
import time
from models import *
from utils.datasets import *
from utils.utils import *
parser = argparse.ArgumentParser()
parser.add_argument('-epochs', type=int, default=100, help='number of epochs')
2018-11-08 11:26:23 +00:00
parser.add_argument('-batch_size', type=int, default=16, help='size of each image batch')
2018-08-26 08:51:39 +00:00
parser.add_argument('-data_config_path', type=str, default='cfg/coco.data', help='data config file path')
parser.add_argument('-cfg', type=str, default='cfg/yolov3.cfg', help='cfg file path')
2018-11-08 11:27:14 +00:00
parser.add_argument('-img_size', type=int, default=32 * 13, help='size of each image dimension')
2018-09-24 19:26:12 +00:00
parser.add_argument('-resume', default=False, help='resume training flag')
2018-08-26 08:51:39 +00:00
opt = parser.parse_args()
print(opt)
cuda = torch.cuda.is_available()
device = torch.device('cuda:0' if cuda else 'cpu')
random.seed(0)
np.random.seed(0)
torch.manual_seed(0)
if cuda:
torch.cuda.manual_seed(0)
torch.cuda.manual_seed_all(0)
2018-11-08 11:28:19 +00:00
torch.backends.cudnn.benchmark = True
2018-08-26 08:51:39 +00:00
2018-08-26 15:09:10 +00:00
2018-08-26 08:51:39 +00:00
def main(opt):
2018-10-26 22:42:34 +00:00
os.makedirs('weights', exist_ok=True)
2018-08-26 08:51:39 +00:00
# Configure run
data_config = parse_data_config(opt.data_config_path)
num_classes = int(data_config['classes'])
2018-09-01 16:41:05 +00:00
if platform == 'darwin': # MacOS (local)
2018-09-02 22:35:46 +00:00
train_path = data_config['train']
2018-09-01 16:41:05 +00:00
else: # linux (cloud, i.e. gcp)
2018-08-26 18:30:47 +00:00
train_path = '../coco/trainvalno5k.part'
2018-08-26 08:51:39 +00:00
# Initialize model
2018-11-05 22:17:53 +00:00
model = Darknet(opt.cfg, opt.img_size)
2018-08-26 08:51:39 +00:00
# Get dataloader
2018-09-02 09:38:39 +00:00
dataloader = load_images_and_labels(train_path, batch_size=opt.batch_size, img_size=opt.img_size, augment=True)
2018-08-26 08:51:39 +00:00
2018-09-24 01:06:04 +00:00
# Reload saved optimizer state
2018-08-26 08:51:39 +00:00
start_epoch = 0
best_loss = float('inf')
if opt.resume:
2018-10-26 22:42:34 +00:00
checkpoint = torch.load('weights/latest.pt', map_location='cpu')
2018-08-26 08:51:39 +00:00
model.load_state_dict(checkpoint['model'])
if torch.cuda.device_count() > 1:
print('Using ', torch.cuda.device_count(), ' GPUs')
model = nn.DataParallel(model)
model.to(device).train()
2018-09-28 12:26:46 +00:00
# # Transfer learning (train only YOLO layers)
2018-08-26 08:51:39 +00:00
# for i, (name, p) in enumerate(model.named_parameters()):
# if p.shape[0] != 650: # not YOLO layer
# p.requires_grad = False
# Set optimizer
2018-11-09 15:44:12 +00:00
# optimizer = torch.optim.Adam(filter(lambda p: p.requires_grad, model.parameters()))
2018-11-09 16:03:26 +00:00
optimizer = torch.optim.SGD(filter(lambda p: p.requires_grad, model.parameters()),
lr=1e-3, momentum=.9, weight_decay=5e-4)
2018-08-26 08:51:39 +00:00
2018-09-24 19:25:17 +00:00
start_epoch = checkpoint['epoch'] + 1
2018-09-24 01:06:04 +00:00
if checkpoint['optimizer'] is not None:
optimizer.load_state_dict(checkpoint['optimizer'])
best_loss = checkpoint['best_loss']
2018-08-26 08:51:39 +00:00
del checkpoint # current, saved
2018-10-30 14:18:52 +00:00
2018-08-26 08:51:39 +00:00
else:
2018-10-30 14:18:52 +00:00
# Initialize model with darknet53 weights (optional)
if not os.path.isfile('weights/darknet53.conv.74'):
2018-10-30 14:20:52 +00:00
os.system('wget https://pjreddie.com/media/files/darknet53.conv.74 -P weights')
2018-10-30 14:18:52 +00:00
load_weights(model, 'weights/darknet53.conv.74')
2018-08-26 08:51:39 +00:00
if torch.cuda.device_count() > 1:
print('Using ', torch.cuda.device_count(), ' GPUs')
model = nn.DataParallel(model)
model.to(device).train()
2018-09-20 16:03:19 +00:00
# Set optimizer
2018-11-09 15:44:12 +00:00
# optimizer = torch.optim.Adam(model.parameters(), lr=1e-4, weight_decay=5e-4)
2018-11-09 16:03:26 +00:00
optimizer = torch.optim.SGD(model.parameters(), lr=1e-3, momentum=.9, weight_decay=5e-4)
2018-08-26 08:51:39 +00:00
# Set scheduler
2018-09-24 23:29:35 +00:00
# scheduler = torch.optim.lr_scheduler.MultiStepLR(optimizer, milestones=[54, 61], gamma=0.1)
2018-08-26 08:51:39 +00:00
2018-10-10 14:16:17 +00:00
model_info(model)
2018-08-26 08:51:39 +00:00
t0, t1 = time.time(), time.time()
2018-10-09 17:22:33 +00:00
mean_recall, mean_precision = 0, 0
2018-11-08 11:29:35 +00:00
print('%11s' * 16 % (
2018-09-19 02:21:46 +00:00
'Epoch', 'Batch', 'x', 'y', 'w', 'h', 'conf', 'cls', 'total', 'P', 'R', 'nTargets', 'TP', 'FP', 'FN', 'time'))
2018-08-26 08:51:39 +00:00
for epoch in range(opt.epochs):
epoch += start_epoch
2018-09-20 16:03:19 +00:00
# Update scheduler (automatic)
2018-08-26 08:51:39 +00:00
# scheduler.step()
2018-09-20 16:03:19 +00:00
# Update scheduler (manual) at 0, 54, 61 epochs to 1e-3, 1e-4, 1e-5
2018-11-14 15:14:41 +00:00
if epoch > 50:
lr = 1e-4
2018-11-14 23:57:15 +00:00
else:
lr = 1e-3
2018-09-24 23:29:35 +00:00
for g in optimizer.param_groups:
g['lr'] = lr
2018-08-26 08:51:39 +00:00
ui = -1
rloss = defaultdict(float) # running loss
2018-10-09 17:22:33 +00:00
metrics = torch.zeros(3, num_classes)
optimizer.zero_grad()
2018-08-26 08:51:39 +00:00
for i, (imgs, targets) in enumerate(dataloader):
2018-09-19 02:21:46 +00:00
if sum([len(x) for x in targets]) < 1: # if no targets continue
continue
2018-09-20 16:03:19 +00:00
# SGD burn-in
2018-09-24 19:25:17 +00:00
if (epoch == 0) & (i <= 1000):
2018-11-15 00:01:04 +00:00
lr = 1e-3 * (i / 1000) ** 4
2018-09-24 19:25:17 +00:00
for g in optimizer.param_groups:
g['lr'] = lr
2018-09-20 16:03:19 +00:00
# Compute loss, compute gradient, update parameters
2018-11-22 13:14:19 +00:00
precision_per_batch = False
loss = model(imgs.to(device), targets, requestPrecision=precision_per_batch)
2018-09-19 02:21:46 +00:00
loss.backward()
2018-10-09 17:22:33 +00:00
2018-11-08 11:26:23 +00:00
# accumulated_batches = 1 # accumulate gradient for 4 batches before stepping optimizer
# if ((i+1) % accumulated_batches == 0) or (i == len(dataloader) - 1):
optimizer.step()
optimizer.zero_grad()
2018-09-19 02:21:46 +00:00
2018-11-22 13:14:19 +00:00
# Running epoch-means of tracked metrics
2018-09-19 02:21:46 +00:00
ui += 1
for key, val in model.losses.items():
rloss[key] = (rloss[key] * ui + val) / (ui + 1)
2018-11-22 13:14:19 +00:00
if precision_per_batch:
TP, FP, FN = metrics
metrics += model.losses['metrics']
# Precision
precision = TP / (TP + FP)
k = (TP + FP) > 0
if k.sum() > 0:
mean_precision = precision[k].mean()
# Recall
recall = TP / (TP + FN)
k = (TP + FN) > 0
if k.sum() > 0:
mean_recall = recall[k].mean()
2018-09-19 02:21:46 +00:00
2018-11-08 11:29:35 +00:00
s = ('%11s%11s' + '%11.3g' * 14) % (
2018-09-19 02:32:16 +00:00
'%g/%g' % (epoch, opt.epochs - 1), '%g/%g' % (i, len(dataloader) - 1), rloss['x'],
2018-09-19 02:21:46 +00:00
rloss['y'], rloss['w'], rloss['h'], rloss['conf'], rloss['cls'],
2018-10-09 17:32:42 +00:00
rloss['loss'], mean_precision, mean_recall, model.losses['nT'], model.losses['TP'],
model.losses['FP'], model.losses['FN'], time.time() - t1)
2018-09-19 02:21:46 +00:00
t1 = time.time()
print(s)
2018-08-26 08:51:39 +00:00
# Update best loss
2018-09-19 02:21:46 +00:00
loss_per_target = rloss['loss'] / rloss['nT']
2018-08-26 08:51:39 +00:00
if loss_per_target < best_loss:
best_loss = loss_per_target
# Save latest checkpoint
checkpoint = {'epoch': epoch,
'best_loss': best_loss,
'model': model.state_dict(),
'optimizer': optimizer.state_dict()}
2018-10-26 22:42:34 +00:00
torch.save(checkpoint, 'weights/latest.pt')
2018-08-26 08:51:39 +00:00
# Save best checkpoint
if best_loss == loss_per_target:
2018-10-26 22:42:34 +00:00
os.system('cp weights/latest.pt weights/best.pt')
2018-08-26 08:51:39 +00:00
2018-10-26 22:42:34 +00:00
# Save backup weights every 5 epochs
2018-08-26 22:00:25 +00:00
if (epoch > 0) & (epoch % 5 == 0):
2018-10-26 22:42:34 +00:00
os.system('cp weights/latest.pt weights/backup' + str(epoch) + '.pt')
2018-08-26 08:51:39 +00:00
2018-11-14 15:14:41 +00:00
# Calculate mAP
2018-11-21 17:01:18 +00:00
import test
2018-11-14 15:14:41 +00:00
test.opt.weights_path = 'weights/latest.pt'
2018-11-22 12:52:22 +00:00
mAP, R, P = test.main(test.opt)
2018-11-14 15:14:41 +00:00
# Write epoch results
with open('results.txt', 'a') as file:
2018-11-22 12:52:22 +00:00
file.write(s + '%11.3g' * 3 % (mAP, P, R) + '\n')
2018-11-14 15:14:41 +00:00
2018-08-26 08:51:39 +00:00
# Save final model
dt = time.time() - t0
print('Finished %g epochs in %.2fs (%.2fs/epoch)' % (epoch, dt, dt / (epoch + 1)))
if __name__ == '__main__':
torch.cuda.empty_cache()
main(opt)
torch.cuda.empty_cache()