Problem in parsing waymo dataset
I attempted to download the Waymo dataset from the official website, but encountered the following bug while parsing the data.
Traceback (most recent call last):
File "/home/longk/anaconda3/envs/detzero/lib/python3.8/runpy.py", line 194, in _run_module_as_main
return _run_code(code, main_globals, None,
File "/home/longk/anaconda3/envs/detzero/lib/python3.8/runpy.py", line 87, in _run_code
exec(code, run_globals)
File "/mnt/disk8Tone/longkai/DetZero/detection/detzero_det/datasets/waymo/waymo_preprocess.py", line 241, in
I removed '_with_camera_labels.tfrecord' from the line sequence_file_tfrecord = sequence_file[:-9] + '_with_camera_labels.tfrecord'
hello,i also meet this problem,and fix by index modify in /root/DetZero/detection/detzero_det/datasets/waymo/waymo_utils.py
sequence_file_tfrecord = sequence_file[:-28] + '_with_camera_labels.tfrecord'
but i find prepare data is chucked ,do u meet this problem?like
0%| | 0/24 [00:00<?, ?it/s]
I can parse it here, but there is an issue with the parsed data. Visualization reveals that the point cloud is messy.
And the parsing speed is very slow, far slower than the parsing data of OpenPCDET.
I have reanalyzed some waymo data, but it is still this error. But I have no problem parsing with OpenPCDET. I haven't made any changes to the code, why did this error occur?
你好,我也遇到这个问题,通过修改 /root/DetZero/detection/detzero_det/datasets/waymo/waymo_utils.py 中的索引来修复,
sequence_file_tfrecord = sequence_file[:-28] + '_with_camera_labels.tfrecord'但是我发现准备数据被卡住了,你遇到这个问题吗?比如 0%| | 0/24 [00:00<?, ?it/s]
hello,i also meet this problem,and fix by index modify in /root/DetZero/detection/detzero_det/datasets/waymo/waymo_utils.py
sequence_file_tfrecord = sequence_file[:-28] + '_with_camera_labels.tfrecord'but i find prepare data is chucked ,do u meet this problem?like 0%| | 0/24 [00:00<?, ?it/s]
Hello, I also encountered the same problem, have you solved it?
@KaiLong1 I also encountered the same problem, have you solved it?
I have encountered this issue before, could you please provide the version of your installed waymo-open-dataset-tf, such as 2-6-0 or 2-0-0?
我以前遇到过这个问题,您能否提供您安装的版本,例如 或 ?
waymo-open-dataset-tf``2-6-0``2-0-0
Hello, I used waymo-open-dataset-tf-2-5-0 1.4.1, but I found that there was a duplicate part of sequence_file_tfrecord = sequence_file[:-9] + '_with_camera_labels.tfrecord' in the waymo_utils.py, so I changed it to sequence_file_tfrecord= sequence_file[:-9] + '.tfrecord', but it gets stuck again in execution, log: CPU frequency: 3187200000 Hz 0%| | 0/48 [00:00<?, ?it/s], and I limited the number of processes.