zc-alexfan / arctic

[CVPR 2023] Official repository for downloading, processing, visualizing, and training models on the ARCTIC dataset.
https://arctic.is.tue.mpg.de
Other
301 stars 18 forks source link

File not found error for p1_train.npy - error when training #16

Closed anjugopinath closed 1 year ago

anjugopinath commented 1 year ago

I was trying to run the training, but I got "file not found" error with it looking for file p1_train.npy. I did a search of the entire downloaded folder, but don't have this file.

zc-alexfan commented 1 year ago

Currently at cvpr so i have limited capacity. However, it looks like the code is looking for split files. You can download them according to the download readme

anjugopinath commented 1 year ago

I tried executing the script bash/download_splits.sh , but it was stuck indefinitely: image

When I tried to open the url, it said "File Not Found".

zc-alexfan commented 1 year ago

sorry for the wait. Just recovered from CVPR.

Downloading splits can fail due to limited RAM storage. The split files are very big, so it is possible that your machine runs out of memory. Try to download again, but open a terminal with htop to see if the program breaks when the RAM is full.

If that's the case, you can increase the "RAM memory" by increasing the swap space so that you can use the disk space to hold the memory when RAM is full.

Instructions for increasing the swap space can be found here.

anjugopinath commented 1 year ago

I downloaded it directly using the url. Thank You for your response.