【记录】ScanNet数据集下载 ConnectionResetError: [Errno 104] Connection reset by peer

如何解决[Errno 104]报错

出现 ConnectionResetError: [Errno 104] Connection reset by peer 解决方式

下载脚本中

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']

如果直接python运行整个脚本很容易导致ConnectionResetError: [Errno 104] Connection reset by peer, 因此可以使用以下运行命令每次进行一个filetype的下载。

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

如何下载小样本数据

整套数据集共1.2TB,如果不想全部下载的话可以使用以下命令下载约5.6G的采样数据。

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

猜你喜欢

转载自blog.csdn.net/yaoyao_chen/article/details/129201080