QVPR / Patch-NetVLAD

Code for the CVPR2021 paper "Patch-NetVLAD: Multi-Scale Fusion of Locally-Global Descriptors for Place Recognition"
MIT License
510 stars 72 forks source link

About “out of memory” question #55

Closed buulzj closed 2 years ago

buulzj commented 2 years ago

Hello, My question is "OSError: Not enough free space to write 18530304 bytes" in feature extract process.

It seems to be that Numpy.save() needs more memory than I have.

My computer have 16GB Memory, 200GB free Disk space and WSL2 Ubuntu20.04 OS.

The WSL2 needs 3GB Memory to keep working.

Can you give me some advice?

Thank you.

Tobias-Fischer commented 2 years ago

The error is quite specific, you're out of disk space on the partition that you want to write to. Why do you use WSL? You should be able to install everything directly on Windows using mamba. Or maybe change the path where you save the files to?

buulzj commented 2 years ago

Thank you for your guidance. I will try to experiment on Windows platform.