datasets
datasets copied to clipboard
Fix path for images and annotations
The scene_parse150 dataset throwing following error
ConnectionError: HTTPConnectionPool(host='placeschallenge.csail.mit.edu', port=80): Max retries exceeded with url: /data/ChallengeData2017/annotations_instance.tar (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f9f90b1d990>: Failed to establish a new connection: [Errno 110] Connection timed out'))
For more details. Please find the gist for reference.
It is working as expected after updating the path for images and annotations in scene_parsing150.py as shown below
- From
http://placeschallenge.csail.mit.edu/data/ChallengeData2017/images.tartohttp://sceneparsing.csail.mit.edu/data/ChallengeData2017/images.tar - From
http://placeschallenge.csail.mit.edu/data/ChallengeData2017/annotations_instance.tartohttp://sceneparsing.csail.mit.edu/data/ChallengeData2017/annotations_instance.tar
Thank you for your contribution!
Please read https://www.tensorflow.org/datasets/contribute#pr_checklist to make sure your PR follows the guidelines.
Add Dataset
Description
Checklist
- [ ] Address all TODO's
- [ ] Add alphabetized import to subdirectory's
__init__.py - [ ] Run
download_and_preparesuccessfully - [ ] Add checksums file
- [ ] Properly cite in
BibTeXformat - [ ] Add passing test(s)
- [ ] Add test data
- [ ] If using additional dependencies (e.g.
scipy), use lazy_imports (if applicable) - [ ] Add data generation script (if applicable)
- [ ] Lint code