Closed alexmelekhin closed 2 years ago
I've tried to implement validation during training and faced a problem that in the val phase the script returns an error:
AssertionError: Unknown lidar timestamp: 1435937763823973
I've checked the index generation script and found that there is a bug in the code: https://github.com/jac99/MinkLocMultimodal/blob/e8fc6d23c3c6c3cb937186fd0efeb2b67a67b636/scripts/generate_rgb_for_lidar.py#L76
I am pretty sure that it should be ts, traversal = get_ts_traversal(val_queries[e].rel_scan_filepath)
ts, traversal = get_ts_traversal(val_queries[e].rel_scan_filepath)
Thanks for correcting this. Indeed there was a bug in the code.
I've tried to implement validation during training and faced a problem that in the val phase the script returns an error:
I've checked the index generation script and found that there is a bug in the code: https://github.com/jac99/MinkLocMultimodal/blob/e8fc6d23c3c6c3cb937186fd0efeb2b67a67b636/scripts/generate_rgb_for_lidar.py#L76
I am pretty sure that it should be
ts, traversal = get_ts_traversal(val_queries[e].rel_scan_filepath)