Spaces:
Runtime error
Runtime error
Upload projects/bdd100k.yml
Browse files- projects/bdd100k.yml +60 -0
projects/bdd100k.yml
ADDED
@@ -0,0 +1,60 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# mean and std in RGB order, actually this part should remain unchanged as long as your dataset is similar to coco.
|
2 |
+
mean: [0.485, 0.456, 0.406]
|
3 |
+
std: [0.229, 0.224, 0.225]
|
4 |
+
|
5 |
+
# this is coco anchors, change it if necessary
|
6 |
+
#anchors_scales: '[2 ** 0, 2 ** 1/3, 2 ** 2/3]'
|
7 |
+
#anchors_ratios: '[(0.7, 1.4), (1.0, 1.0), (1.4, 0.7)]'
|
8 |
+
|
9 |
+
#anchors_scales: '[5.125, 0.625, 1.625]'
|
10 |
+
#anchors_ratios: '[(1, 0.7317073170731707), (1, 0.85), (1, 0.7884615384615384)]'
|
11 |
+
|
12 |
+
anchors_scales: '[2**0, 2**0.70, 2**1.32]'
|
13 |
+
anchors_ratios: '[(0.62, 1.58), (1.0, 1.0), (1.58, 0.62)]'
|
14 |
+
|
15 |
+
# must match your dataset's category_id.
|
16 |
+
# category_id is one_indexed,
|
17 |
+
# for example, index of 'car' here is 2, while category_id of is 3
|
18 |
+
#obj_list: ['pedestrian',
|
19 |
+
# 'rider',
|
20 |
+
# 'car',
|
21 |
+
# 'truck',
|
22 |
+
# 'bus',
|
23 |
+
# 'train',
|
24 |
+
# 'motorcycle',
|
25 |
+
# 'bicycle',
|
26 |
+
# 'traffic light',
|
27 |
+
# 'traffic sign']
|
28 |
+
|
29 |
+
obj_list: ['car']
|
30 |
+
|
31 |
+
seg_list: ['road',
|
32 |
+
'lane']
|
33 |
+
|
34 |
+
dataset:
|
35 |
+
color_rgb: false
|
36 |
+
dataroot: ./datasets/bdd100k
|
37 |
+
labelroot: ./datasets/data2/zwt/bdd/bdd100k/labels/100k
|
38 |
+
laneroot: ./datasets/bdd_lane_gt
|
39 |
+
maskroot: ./datasets/bdd_seg_gt
|
40 |
+
data_format: jpg
|
41 |
+
flip: true
|
42 |
+
hsv_h: 0.015
|
43 |
+
hsv_s: 0.7
|
44 |
+
hsv_v: 0.4
|
45 |
+
org_img_size:
|
46 |
+
- 720
|
47 |
+
- 1280
|
48 |
+
rot_factor: 10
|
49 |
+
scale_factor: 0.25
|
50 |
+
shear: 0.0
|
51 |
+
test_set: val
|
52 |
+
train_set: train
|
53 |
+
translate: 0.1
|
54 |
+
model:
|
55 |
+
image_size:
|
56 |
+
- 640
|
57 |
+
- 384
|
58 |
+
need_autoanchor: false
|
59 |
+
pin_memory: false
|
60 |
+
num_seg_class: 2
|