Li Dong
commited on
Commit
•
225c761
1
Parent(s):
df995db
Fix URLs of sbu_captions dataset (#5020)
Browse files* Update sbu_captions.py
* Update homepage and contact information
* Update metadata JSON
Co-authored-by: Albert Villanova del Moral <[email protected]>
Commit from https://github.com/huggingface/datasets/commit/42915653986e54e3d49ec0a751b4d5f8ede3dddd
- README.md +2 -2
- dataset_infos.json +1 -1
- sbu_captions.py +2 -2
README.md
CHANGED
@@ -51,11 +51,11 @@ pretty_name: SBU Captioned Photo Dataset
|
|
51 |
|
52 |
## Dataset Description
|
53 |
|
54 |
-
- **Homepage:**
|
55 |
- **Repository:**
|
56 |
- **Paper:** [Im2Text: Describing Images Using 1 Million Captioned Photographs](https://papers.nips.cc/paper/2011/hash/5dd9db5e033da9c6fb5ba83c7a7ebea9-Abstract.html)
|
57 |
- **Leaderboard:**
|
58 |
-
- **Point of Contact:** [Vicente Ordóñez Román](mailto:
|
59 |
|
60 |
### Dataset Summary
|
61 |
|
|
|
51 |
|
52 |
## Dataset Description
|
53 |
|
54 |
+
- **Homepage:** https://www.cs.rice.edu/~vo9/sbucaptions/
|
55 |
- **Repository:**
|
56 |
- **Paper:** [Im2Text: Describing Images Using 1 Million Captioned Photographs](https://papers.nips.cc/paper/2011/hash/5dd9db5e033da9c6fb5ba83c7a7ebea9-Abstract.html)
|
57 |
- **Leaderboard:**
|
58 |
+
- **Point of Contact:** [Vicente Ordóñez Román](mailto:vicenteor@rice.edu)
|
59 |
|
60 |
### Dataset Summary
|
61 |
|
dataset_infos.json
CHANGED
@@ -1 +1 @@
|
|
1 |
-
{"default": {"description": "The SBU Captioned Photo Dataset is a collection of over 1 million images with associated text descriptions extracted from Flicker.\n", "citation": "@inproceedings{NIPS2011_5dd9db5e,\n author = {Ordonez, Vicente and Kulkarni, Girish and Berg, Tamara},\n booktitle = {Advances in Neural Information Processing Systems},\n editor = {J. Shawe-Taylor and R. Zemel and P. Bartlett and F. Pereira and K.Q. Weinberger},\n pages = {},\n publisher = {Curran Associates, Inc.},\n title = {Im2Text: Describing Images Using 1 Million Captioned Photographs},\n url = {https://proceedings.neurips.cc/paper/2011/file/5dd9db5e033da9c6fb5ba83c7a7ebea9-Paper.pdf},\n volume = {24},\n year = {2011}\n}\n", "homepage": "
|
|
|
1 |
+
{"default": {"description": "The SBU Captioned Photo Dataset is a collection of over 1 million images with associated text descriptions extracted from Flicker.\n", "citation": "@inproceedings{NIPS2011_5dd9db5e,\n author = {Ordonez, Vicente and Kulkarni, Girish and Berg, Tamara},\n booktitle = {Advances in Neural Information Processing Systems},\n editor = {J. Shawe-Taylor and R. Zemel and P. Bartlett and F. Pereira and K.Q. Weinberger},\n pages = {},\n publisher = {Curran Associates, Inc.},\n title = {Im2Text: Describing Images Using 1 Million Captioned Photographs},\n url = {https://proceedings.neurips.cc/paper/2011/file/5dd9db5e033da9c6fb5ba83c7a7ebea9-Paper.pdf},\n volume = {24},\n year = {2011}\n}\n", "homepage": "https://www.cs.rice.edu/~vo9/sbucaptions/", "license": "unknown", "features": {"image_url": {"dtype": "string", "id": null, "_type": "Value"}, "user_id": {"dtype": "string", "id": null, "_type": "Value"}, "caption": {"dtype": "string", "id": null, "_type": "Value"}}, "post_processed": null, "supervised_keys": null, "task_templates": null, "builder_name": "sbu_captions", "config_name": "default", "version": {"version_str": "0.0.0", "description": null, "major": 0, "minor": 0, "patch": 0}, "splits": {"train": {"name": "train", "num_bytes": 143795586, "num_examples": 1000000, "dataset_name": "sbu_captions"}}, "download_checksums": {"https://www.cs.rice.edu/~vo9/sbucaptions/sbu-captions-all.tar.gz": {"num_bytes": 49787719, "checksum": "3d145fb58fea5bf5680e71c82e93d336c1a06d726dbea7f7702d49f5bf2ff532"}}, "download_size": 49787719, "post_processing_size": null, "dataset_size": 143795586, "size_in_bytes": 193583305}}
|
sbu_captions.py
CHANGED
@@ -39,9 +39,9 @@ The SBU Captioned Photo Dataset is a collection of over 1 million images with as
|
|
39 |
|
40 |
_LICENSE = "unknown"
|
41 |
|
42 |
-
_HOMEPAGE = "
|
43 |
|
44 |
-
_URL = "
|
45 |
|
46 |
_FEATURES = datasets.Features(
|
47 |
{"image_url": datasets.Value("string"), "user_id": datasets.Value("string"), "caption": datasets.Value("string")}
|
|
|
39 |
|
40 |
_LICENSE = "unknown"
|
41 |
|
42 |
+
_HOMEPAGE = "https://www.cs.rice.edu/~vo9/sbucaptions/"
|
43 |
|
44 |
+
_URL = "https://www.cs.rice.edu/~vo9/sbucaptions/sbu-captions-all.tar.gz"
|
45 |
|
46 |
_FEATURES = datasets.Features(
|
47 |
{"image_url": datasets.Value("string"), "user_id": datasets.Value("string"), "caption": datasets.Value("string")}
|