albertvillanova HF staff commited on
Commit
5ba9dda
1 Parent(s): 74b2b6a

Update citation information

Browse files
Files changed (2) hide show
  1. README.md +8 -4
  2. 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
- @inproceedings{krishnavisualgenome,
488
  title={Visual Genome: Connecting Language and Vision Using Crowdsourced Dense Image Annotations},
489
- author={Krishna, Ranjay and Zhu, Yuke and Groth, Oliver and Johnson, Justin and Hata, Kenji and Kravitz, Joshua and Chen, Stephanie and Kalantidis, Yannis and Li, Li-Jia and Shamma, David A and Bernstein, Michael and Fei-Fei, Li},
490
- year = {2016},
491
- url = {https://arxiv.org/abs/1602.07332},
 
 
 
 
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
- @inproceedings{krishnavisualgenome,
31
  title={Visual Genome: Connecting Language and Vision Using Crowdsourced Dense Image Annotations},
32
- author={Krishna, Ranjay and Zhu, Yuke and Groth, Oliver and Johnson, Justin and Hata, Kenji and Kravitz, Joshua and Chen, Stephanie and Kalantidis, Yannis and Li, Li-Jia and Shamma, David A and Bernstein, Michael and Fei-Fei, Li},
33
- year = {2016},
34
- url = {https://arxiv.org/abs/1602.07332},
 
 
 
 
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