zhulf0804 / PointPillars

A Simple PointPillars PyTorch Implementation for 3D LiDAR(KITTI) Detection.
MIT License
454 stars 112 forks source link

self.sorted_ids = list(self.data_infos.keys()) AttributeError: 'list' object has no attribute 'keys' #40

Closed gdb123 closed 5 months ago

gdb123 commented 1 year ago

你好,在训练过程中出现了如下错误: 请问应该怎么解决呢 self.sorted_ids = list(self.data_infos.keys()) AttributeError: 'list' object has no attribute 'keys'

zhulf0804 commented 1 year ago

你好 @gdb123, 错误信息提示self.data_infos是list, 不是字典。数据是通过pre_process_kitti.py预处理过的吗?