[Record] ScanNet dataset download ConnectionResetError: [Errno 104] Connection reset by peer

How to solve [Errno 104] error

ConnectionResetError appears: [Errno 104] Connection reset by peer solution

download script

FILETYPES = ['.aggregation.json', '.sens', '.txt', '_vh_clean.ply', '_vh_clean_2.0.010000.segs.json', '_vh_clean_2.ply', '_vh_clean.segs.json', '_vh_clean.aggregation.json', '_vh_clean_2.labels.ply', '_2d-instance.zip', '_2d-instance-filt.zip', '_2d-label.zip', '_2d-label-filt.zip']

If you run the entire script directly in python, it is easy to cause ConnectionResetError: [Errno 104] Connection reset by peer, so you can use the following run command to download one filetype at a time.

python download-scannet.py -o $SAVE_DIR --type .sens

How to download small sample data

The entire data set is 1.2TB in total. If you don’t want to download all of them, you can use the following command to download about 5.6G of sample data.

python download-scannet.py -o $SAVE_DIR --preprocessed_frames

Guess you like

Origin blog.csdn.net/yaoyao_chen/article/details/129201080