NVlabs / FB-BEV

Official PyTorch implementation of FB-BEV & FB-OCC - Forward-backward view transformation for vision-centric autonomous driving perception
Other
608 stars 40 forks source link

memory overflow of evaluation #7

Open rkdckddnjs9 opened 11 months ago

rkdckddnjs9 commented 11 months ago

Thanks for your excellent works!

When I test with dist_test.sh, the memory continues to increase, causing the evaluation to stop. The same thing happens when fbocc.py's pred_occcupancy_category = pred_occcupancy_category.cpu().numpy() is performed without changing to cpu. I wonder if there were any problems like this, do you know how to solve them?

rkdckddnjs9 commented 11 months ago

image

rkdckddnjs9 commented 11 months ago

Even if the evaluation was conducted on another server with 128G of RAM, it was confirmed that the memory was exceeded.

jarvishou829 commented 11 months ago

Even if the evaluation was conducted on another server with 128G of RAM, it was confirmed that the memory was exceeded.

Have you solved this? The memory overflow on the 160g RAM too.

rkdckddnjs9 commented 11 months ago

Even if the evaluation was conducted on another server with 128G of RAM, it was confirmed that the memory was exceeded.

Have you solved this? The memory overflow on the 160g RAM too.

I tried several methods, but couldn't solve it.

cdb342 commented 11 months ago

This work preserves the history information in the RAM, so more memory is needed.

rkdckddnjs9 commented 11 months ago

This work preserves the history information in the RAM, so more memory is needed.

Could you give me your computer specifications and environmental information?

cdb342 commented 11 months ago

This work preserves the history information in the RAM, so more memory is needed.

Could you give me your computer specifications and environmental information?

I run the code on the cluster, similar errors occur when I specify the default quantity memory, but this problem is solved when I allocate 500g memory.

rkdckddnjs9 commented 10 months ago

This work preserves the history information in the RAM, so more memory is needed.

Could you give me your computer specifications and environmental information?

I run the code on the cluster, similar errors occur when I specify the default quantity memory, but this problem is solved when I allocate 500g memory.

Thank you for your reply :)