Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想从这里下载 Zenodo 的 LoDoPaB-CT 数据集。
“测试”和“验证”数据已成功下载。但是在下载火车数据时,这些数据非常大。ERROR 429: Too Many Requests有时开始下载后,我总是收到错误消息。也就是说当下载大小在1G~3G左右时,就会出现429错误。我应该怎么做才能解决这个问题?谢谢!
ERROR 429: Too Many Requests
尝试使用 wget 的“--wait”和“--continue”选项。例如:
wget --wait 10 --random-wait --continue ${your_url}
将在检索之间随机等待 5 到 15 秒,然后继续获取部分下载的文件。