megvii-research / Far3D

[AAAI2024] Far3D: Expanding the Horizon for Surround-view 3D Object Detection
Other
138 stars 11 forks source link

Nuscenes with Batch size > 1 #21

Open BarathwajAnandan opened 8 months ago

BarathwajAnandan commented 8 months ago

Hi, I managed to initiate training with Nuscenes but apparently if Batch size > 1, there's a 'NotImplementedError'

        if B == 1:
            new_reference_points = coords3d.unsqueeze(0)    # (B, M, 3)
        else:
            print("Batch B:", B)
            raise NotImplementedError

in models/de

by any chance do you have an update for this part or do you guys still train for Batch size = 1?

Thanks!