forked from voldemortX/pytorch-auto-drive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
resnet50_tusimple.py
80 lines (71 loc) · 2.04 KB
/
resnet50_tusimple.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
# Data pipeline
from configs.lane_detection.common.datasets.tusimple_seg import dataset
from configs.lane_detection.common.datasets.train_level0_360 import train_augmentation
from configs.lane_detection.common.datasets.test_360 import test_augmentation
# Optimization pipeline
from configs.lane_detection.common.optims.segloss_7class import loss
from configs.lane_detection.common.optims.sgd013 import optimizer
from configs.lane_detection.common.optims.ep50_poly_warmup500 import lr_scheduler
train = dict(
exp_name='resnet50_baseline_tusimple',
workers=4,
batch_size=8,
checkpoint=None,
# Device args
world_size=0,
dist_url='env://',
device='cuda',
val_num_steps=0, # Seg IoU validation (mostly useless)
save_dir='./checkpoints',
input_size=(360, 640),
original_size=(720, 1280),
num_classes=7,
num_epochs=50,
collate_fn=None, # 'dict_collate_fn' for LSTR
seg=True # Seg-based method or not
)
test = dict(
exp_name='resnet50_baseline_tusimple',
workers=4,
batch_size=32,
checkpoint='./checkpoints/resnet50_baseline_tusimple/model.pt',
# Device args
device='cuda',
save_dir='./checkpoints',
seg=True,
gap=10,
ppl=56,
thresh=0.3,
collate_fn=None, # 'dict_collate_fn' for LSTR
input_size=(360, 640),
original_size=(720, 1280),
max_lane=5,
dataset_name='tusimple'
)
# Essentially DeepLabV1 without dilation like in SCNN paper
model = dict(
name='standard_segmentation_model',
backbone_cfg=dict(
name='predefined_resnet_backbone',
backbone_name='resnet50',
return_layer='layer4',
pretrained=True,
replace_stride_with_dilation=[False, True, True]
),
reducer_cfg=dict(
name='RESAReducer',
in_channels=2048,
reduce=128
),
classifier_cfg=dict(
name='DeepLabV1Head',
in_channels=128,
num_classes=7,
dilation=1
),
lane_classifier_cfg=dict(
name='SimpleLaneExist',
num_output=7 - 1,
flattened_size=6160
)
)