-
Notifications
You must be signed in to change notification settings - Fork 10
Description
Hi maintainers,
I tried to download the SHIFT dataset following the DevKit instructions. The README suggests using the provided download.py script or manually downloading via the official download page or file server. Unfortunately, neither of those endpoints is currently reachable from my environment, and the script cannot proceed.
What I did:
-
According to the README, the manual download links are:
https://www.vis.xyz/shift/download/https://dl.cv.ethz.ch/shift/
-
I tested these URLs directly with
curl:# test the official download page curl -I https://www.vis.xyz/shift/download/ # test the file server curl -I https://dl.cv.ethz.ch/shift/
Both commands returned
HTTP/1.1 502 Bad Gatewayon every attempt, which means the endpoints are inaccessible (my network goes through a proxy and receives a 502 error). -
Because these endpoints are unreachable, running the recommended script also fails. The script attempts to access the download page and cannot proceed, so no data are downloaded.
Expected Behavior
- The download page and file server should be reachable so that
download.pycan fetch the selected subsets. - If there is maintenance on the official URL, the script could fall back to another endpoint.
Actual Behavior
- Accessing
https://www.vis.xyz/shift/download/andhttps://dl.cv.ethz.ch/shift/withcurlreturnsHTTP/1.1 502 Bad Gatewayfrom the proxy. - Consequently,
download.pyfails to download data.
Environment
- OS: macOS 14
- Python version: Python 3.10
Request / Suggestions
Could you please check if the download endpoints are temporarily down? If the vis.xyz and dl.cv.ethz.ch domains are no longer hosting the data, would it be possible to provide an updated mirror or adjust download.py to use another server?
Thanks!