Delete RQ2/v2xset_lidar_fcooper
Browse files
RQ2/v2xset_lidar_fcooper/config.yaml
DELETED
|
@@ -1,173 +0,0 @@
|
|
| 1 |
-
name: HeterBaseline_v2xset_lidar_fcooper
|
| 2 |
-
root_dir: "dataset/V2XSET/train"
|
| 3 |
-
validate_dir: "dataset/V2XSET/validate"
|
| 4 |
-
test_dir: "dataset/V2XSET/test"
|
| 5 |
-
|
| 6 |
-
yaml_parser: "load_general_params"
|
| 7 |
-
train_params:
|
| 8 |
-
batch_size: &batch_size 2
|
| 9 |
-
epoches: 20
|
| 10 |
-
eval_freq: 2
|
| 11 |
-
save_freq: 2
|
| 12 |
-
max_cav: 5
|
| 13 |
-
|
| 14 |
-
comm_range: 70
|
| 15 |
-
input_source: ['lidar']
|
| 16 |
-
label_type: 'lidar'
|
| 17 |
-
cav_lidar_range: &cav_lidar [-102.4, -102.4, -3, 102.4, 102.4, 1]
|
| 18 |
-
|
| 19 |
-
heter:
|
| 20 |
-
assignment_path: "opencood/logs/heter_modality_assign/v2xset_4modality.json"
|
| 21 |
-
ego_modality: &ego_modality "m1"
|
| 22 |
-
mapping_dict:
|
| 23 |
-
m1: m1
|
| 24 |
-
m2: m1
|
| 25 |
-
m3: m1
|
| 26 |
-
m4: m1
|
| 27 |
-
modality_setting:
|
| 28 |
-
m1:
|
| 29 |
-
sensor_type: &sensor_type_m1 'lidar'
|
| 30 |
-
core_method: &core_method_m1 "point_pillar"
|
| 31 |
-
|
| 32 |
-
# lidar requires preprocess
|
| 33 |
-
preprocess:
|
| 34 |
-
# options: BasePreprocessor, VoxelPreprocessor, BevPreprocessor
|
| 35 |
-
core_method: 'SpVoxelPreprocessor'
|
| 36 |
-
args:
|
| 37 |
-
voxel_size: &voxel_size [0.4, 0.4, 4]
|
| 38 |
-
max_points_per_voxel: 32
|
| 39 |
-
max_voxel_train: 32000
|
| 40 |
-
max_voxel_test: 70000
|
| 41 |
-
# lidar range for each individual cav.
|
| 42 |
-
cav_lidar_range: *cav_lidar
|
| 43 |
-
|
| 44 |
-
|
| 45 |
-
fusion:
|
| 46 |
-
core_method: 'intermediateheter'
|
| 47 |
-
dataset: 'v2xset'
|
| 48 |
-
args:
|
| 49 |
-
proj_first: false
|
| 50 |
-
grid_conf: None # place-holder
|
| 51 |
-
data_aug_conf: None # place-holder
|
| 52 |
-
|
| 53 |
-
data_augment: # no use in intermediate fusion
|
| 54 |
-
- NAME: random_world_flip
|
| 55 |
-
ALONG_AXIS_LIST: [ 'x' ]
|
| 56 |
-
|
| 57 |
-
- NAME: random_world_rotation
|
| 58 |
-
WORLD_ROT_ANGLE: [ -0.78539816, 0.78539816 ]
|
| 59 |
-
|
| 60 |
-
- NAME: random_world_scaling
|
| 61 |
-
WORLD_SCALE_RANGE: [ 0.95, 1.05 ]
|
| 62 |
-
|
| 63 |
-
preprocess:
|
| 64 |
-
# options: BasePreprocessor, VoxelPreprocessor, BevPreprocessor
|
| 65 |
-
core_method: 'SpVoxelPreprocessor'
|
| 66 |
-
args:
|
| 67 |
-
voxel_size: [0.4, 0.4, 4] # useful
|
| 68 |
-
max_points_per_voxel: 1 # useless
|
| 69 |
-
max_voxel_train: 1 # useless
|
| 70 |
-
max_voxel_test: 1 # useless
|
| 71 |
-
# lidar range for each individual cav.
|
| 72 |
-
cav_lidar_range: *cav_lidar
|
| 73 |
-
|
| 74 |
-
# anchor box related
|
| 75 |
-
postprocess:
|
| 76 |
-
core_method: 'VoxelPostprocessor' # VoxelPostprocessor, BevPostprocessor supported
|
| 77 |
-
gt_range: *cav_lidar
|
| 78 |
-
anchor_args:
|
| 79 |
-
cav_lidar_range: *cav_lidar
|
| 80 |
-
l: 3.9
|
| 81 |
-
w: 1.6
|
| 82 |
-
h: 1.56
|
| 83 |
-
r: &anchor_yaw [0, 90]
|
| 84 |
-
feature_stride: 2
|
| 85 |
-
num: &anchor_num 2
|
| 86 |
-
target_args:
|
| 87 |
-
pos_threshold: 0.6
|
| 88 |
-
neg_threshold: 0.45
|
| 89 |
-
score_threshold: 0.2
|
| 90 |
-
order: 'hwl' # hwl or lwh
|
| 91 |
-
max_num: 150 # maximum number of objects in a single frame. use this number to make sure different frames has the same dimension in the same batch
|
| 92 |
-
nms_thresh: 0.15
|
| 93 |
-
dir_args: &dir_args
|
| 94 |
-
dir_offset: 0.7853
|
| 95 |
-
num_bins: 2
|
| 96 |
-
anchor_yaw: *anchor_yaw
|
| 97 |
-
|
| 98 |
-
# model related
|
| 99 |
-
model:
|
| 100 |
-
core_method: heter_model_baseline
|
| 101 |
-
args:
|
| 102 |
-
ego_modality: *ego_modality
|
| 103 |
-
lidar_range: *cav_lidar
|
| 104 |
-
|
| 105 |
-
m1:
|
| 106 |
-
core_method: *core_method_m1
|
| 107 |
-
sensor_type: *sensor_type_m1
|
| 108 |
-
|
| 109 |
-
encoder_args:
|
| 110 |
-
voxel_size: *voxel_size
|
| 111 |
-
lidar_range: *cav_lidar
|
| 112 |
-
pillar_vfe:
|
| 113 |
-
use_norm: true
|
| 114 |
-
with_distance: false
|
| 115 |
-
use_absolute_xyz: true
|
| 116 |
-
num_filters: [64]
|
| 117 |
-
point_pillar_scatter:
|
| 118 |
-
num_features: 64
|
| 119 |
-
|
| 120 |
-
backbone_args:
|
| 121 |
-
layer_nums: [3, 5, 8]
|
| 122 |
-
layer_strides: [2, 2, 2]
|
| 123 |
-
num_filters: [64, 128, 256]
|
| 124 |
-
upsample_strides: [1, 2, 4]
|
| 125 |
-
num_upsample_filter: [128, 128, 128]
|
| 126 |
-
|
| 127 |
-
shrink_header:
|
| 128 |
-
kernal_size: [ 3 ]
|
| 129 |
-
stride: [ 1 ]
|
| 130 |
-
padding: [ 1 ]
|
| 131 |
-
dim: [ 256 ]
|
| 132 |
-
input_dim: 384 # 128 * 3
|
| 133 |
-
|
| 134 |
-
fusion_method: max
|
| 135 |
-
|
| 136 |
-
in_head: 256
|
| 137 |
-
|
| 138 |
-
anchor_number: *anchor_num
|
| 139 |
-
dir_args: *dir_args
|
| 140 |
-
|
| 141 |
-
loss:
|
| 142 |
-
core_method: point_pillar_depth_loss
|
| 143 |
-
args:
|
| 144 |
-
pos_cls_weight: 2.0
|
| 145 |
-
cls:
|
| 146 |
-
type: 'SigmoidFocalLoss'
|
| 147 |
-
alpha: 0.25
|
| 148 |
-
gamma: 2.0
|
| 149 |
-
weight: 1.0
|
| 150 |
-
reg:
|
| 151 |
-
type: 'WeightedSmoothL1Loss'
|
| 152 |
-
sigma: 3.0
|
| 153 |
-
codewise: true
|
| 154 |
-
weight: 2.0
|
| 155 |
-
dir:
|
| 156 |
-
type: 'WeightedSoftmaxClassificationLoss'
|
| 157 |
-
weight: 0.2
|
| 158 |
-
args: *dir_args
|
| 159 |
-
depth:
|
| 160 |
-
weight: 1.0
|
| 161 |
-
|
| 162 |
-
optimizer:
|
| 163 |
-
core_method: Adam
|
| 164 |
-
lr: 0.002
|
| 165 |
-
args:
|
| 166 |
-
eps: 1e-10
|
| 167 |
-
weight_decay: 1e-4
|
| 168 |
-
|
| 169 |
-
lr_scheduler:
|
| 170 |
-
core_method: multistep #step, multistep and Exponential support
|
| 171 |
-
gamma: 0.1
|
| 172 |
-
step_size: [10, 25]
|
| 173 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
RQ2/v2xset_lidar_fcooper/net_epoch_bestval_at11.pth
DELETED
|
@@ -1,3 +0,0 @@
|
|
| 1 |
-
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:04ab2a5e24f0b3ca95fc78aad1b2fc032fd80fbfcbf9d0e4045d29b5a3ebd9b7
|
| 3 |
-
size 32317731
|
|
|
|
|
|
|
|
|
|
|
|