Open fengxueguiren opened 6 months ago
如果代码提示不能导入AttBEVBackboneCORE的错误, 请将代码的配置文件修改为point_pillar_intermediate_core.yaml而不是point_pillar_core.yaml, 当batch_size=1时,还需要修改CORE/opencood/models/fuse_modules/core_attentive_collaboration.py中的代码:
AttBEVBackboneCORE
point_pillar_intermediate_core.yaml
point_pillar_core.yaml
CORE/opencood/models/fuse_modules/core_attentive_collaboration.py
att = self.convatt(q, v, att_map)
为
att = self.convatt(q.unsqueeze(0), v.unsqueeze(0), att_map)
point_pillar_intermediate_core.yaml这个配置文件是不是没有办法多GPU运行?voxelnet_intermediate_fusion.yaml试的这个是可以的
如果代码提示不能导入
AttBEVBackboneCORE
的错误, 请将代码的配置文件修改为point_pillar_intermediate_core.yaml
而不是point_pillar_core.yaml
, 当batch_size=1时,还需要修改CORE/opencood/models/fuse_modules/core_attentive_collaboration.py
中的代码:为