Datasets:
Update citation information
Browse files- README.md +8 -4
- visual_genome.py +8 -4
README.md
CHANGED
|
@@ -484,11 +484,15 @@ Visual Genome by Ranjay Krishna is licensed under a Creative Commons Attribution
|
|
| 484 |
### Citation Information
|
| 485 |
|
| 486 |
```bibtex
|
| 487 |
-
@
|
| 488 |
title={Visual Genome: Connecting Language and Vision Using Crowdsourced Dense Image Annotations},
|
| 489 |
-
author={Krishna
|
| 490 |
-
|
| 491 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 492 |
}
|
| 493 |
```
|
| 494 |
|
|
|
|
| 484 |
### Citation Information
|
| 485 |
|
| 486 |
```bibtex
|
| 487 |
+
@article{Krishna2016VisualGC,
|
| 488 |
title={Visual Genome: Connecting Language and Vision Using Crowdsourced Dense Image Annotations},
|
| 489 |
+
author={Ranjay Krishna and Yuke Zhu and Oliver Groth and Justin Johnson and Kenji Hata and Joshua Kravitz and Stephanie Chen and Yannis Kalantidis and Li-Jia Li and David A. Shamma and Michael S. Bernstein and Li Fei-Fei},
|
| 490 |
+
journal={International Journal of Computer Vision},
|
| 491 |
+
year={2017},
|
| 492 |
+
volume={123},
|
| 493 |
+
pages={32-73},
|
| 494 |
+
url={https://doi.org/10.1007/s11263-016-0981-7},
|
| 495 |
+
doi={10.1007/s11263-016-0981-7}
|
| 496 |
}
|
| 497 |
```
|
| 498 |
|
visual_genome.py
CHANGED
|
@@ -27,11 +27,15 @@ import datasets
|
|
| 27 |
logger = datasets.logging.get_logger(__name__)
|
| 28 |
|
| 29 |
_CITATION = """\
|
| 30 |
-
@
|
| 31 |
title={Visual Genome: Connecting Language and Vision Using Crowdsourced Dense Image Annotations},
|
| 32 |
-
author={Krishna
|
| 33 |
-
|
| 34 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 35 |
}
|
| 36 |
"""
|
| 37 |
|
|
|
|
| 27 |
logger = datasets.logging.get_logger(__name__)
|
| 28 |
|
| 29 |
_CITATION = """\
|
| 30 |
+
@article{Krishna2016VisualGC,
|
| 31 |
title={Visual Genome: Connecting Language and Vision Using Crowdsourced Dense Image Annotations},
|
| 32 |
+
author={Ranjay Krishna and Yuke Zhu and Oliver Groth and Justin Johnson and Kenji Hata and Joshua Kravitz and Stephanie Chen and Yannis Kalantidis and Li-Jia Li and David A. Shamma and Michael S. Bernstein and Li Fei-Fei},
|
| 33 |
+
journal={International Journal of Computer Vision},
|
| 34 |
+
year={2017},
|
| 35 |
+
volume={123},
|
| 36 |
+
pages={32-73},
|
| 37 |
+
url={https://doi.org/10.1007/s11263-016-0981-7},
|
| 38 |
+
doi={10.1007/s11263-016-0981-7}
|
| 39 |
}
|
| 40 |
"""
|
| 41 |
|