jn12 commited on
Commit
a100e0b
·
verified ·
1 Parent(s): 63637a4

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +109 -4
README.md CHANGED
@@ -1,4 +1,109 @@
1
- VisualGenome 是一个大规模的多模态数据集,旨在为计算机视觉和自然语言处理任务提供丰富的视觉和语义信息。该数据集包含了超过 108,000 张图像,每张图像都附带有详细的注释,包括对象、属性、关系、区域描述和问答对。这些注释为图像中的视觉元素提供了深层次的语义理解,使得 VisualGenome 成为训练和评估视觉理解模型的宝贵资源。
2
- VisualGenome 中,每张图像都标注了多个对象(如人、动物、物品等),并为每个对象提供了属性描述(如颜色、形状、状态等)。此外,数据集还标注了对象之间的关系(如“人骑自行车”),以及图像中特定区域的详细描述。这些信息不仅帮助模型理解图像中的内容,还能够支持更复杂的任务,如图像生成、视觉问答和场景理解。
3
- VisualGenome 的问答对部分包含了针对每张图像的自然语言问题及其答案,这些问题涵盖了图像中的各种视觉和语义信息。这使得 VisualGenome 成为训练视觉问答(VQA)模型的理想数据集,能够帮助模型学习如何从图像中提取信息并回答相关问题。
4
- 总的来说,VisualGenome 通过其丰富的多模态注释,为研究人员和开发者提供了一个强大的工具,用于推动计算机视觉和自然语言处理领域的前沿研究。无论是用于对象检测、图像描述生成,还是视觉问答任务,VisualGenome 都能为模型提供全面而细致的训练数据,帮助提升模型的性能和泛化能力。
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ task_categories:
4
+ - image-to-text
5
+ - object-detection
6
+ - visual-question-answering
7
+ language:
8
+ - en
9
+ size_categories:
10
+ - 100K<n<1M
11
+ tags:
12
+ - visual-genome
13
+ - scene-graph
14
+ - region-descriptions
15
+ - visual-relationships
16
+ - attributes
17
+ - object-detection
18
+ - image-captioning
19
+ - vqa
20
+ pretty_name: Visual Genome Raw Data
21
+ ---
22
+
23
+ # Visual Genome Raw Data
24
+
25
+ This repository provides a convenient copy of the raw Visual Genome dataset files for easier access and downloading.
26
+
27
+ > This is **not an official Visual Genome release**.
28
+ > The original dataset was created and released by the Visual Genome authors.
29
+ > Please refer to the official Visual Genome website and paper for authoritative information.
30
+
31
+ ## Dataset Summary
32
+
33
+ Visual Genome is a large-scale vision-language dataset with dense image annotations, including:
34
+
35
+ - Images
36
+ - Region descriptions
37
+ - Object annotations
38
+ - Attribute annotations
39
+ - Relationship annotations
40
+ - Scene graphs
41
+ - Visual question-answering annotations
42
+ - WordNet synset mappings
43
+
44
+ The dataset contains approximately:
45
+
46
+ - 108K images
47
+ - 5.4M region descriptions
48
+ - 1.7M visual question-answer pairs
49
+ - 3.8M object instances
50
+ - 2.8M attributes
51
+ - 2.3M relationships
52
+
53
+ ## Intended Use
54
+
55
+ This dataset can be used for research on:
56
+
57
+ - Image-text representation learning
58
+ - Image captioning
59
+ - Dense captioning
60
+ - Object detection
61
+ - Attribute recognition
62
+ - Visual relationship detection
63
+ - Scene graph generation
64
+ - Visual question answering
65
+ - Vision-language pretraining
66
+
67
+ ## Source
68
+
69
+ Original Visual Genome website:
70
+
71
+ ```text
72
+ https://visualgenome.org/
73
+ ```
74
+
75
+ Dataset page:
76
+
77
+ ```text
78
+ https://homes.cs.washington.edu/~ranjay/visualgenome/
79
+ ```
80
+
81
+ ## License
82
+
83
+ Visual Genome is licensed under the Creative Commons Attribution 4.0 International License:
84
+
85
+ ```text
86
+ CC BY 4.0
87
+ https://creativecommons.org/licenses/by/4.0/
88
+ ```
89
+
90
+ Users should comply with the original license terms, including proper attribution to the Visual Genome authors.
91
+
92
+ ## Citation
93
+
94
+ If you use this dataset, please cite the original Visual Genome paper:
95
+
96
+ ```bibtex
97
+ @article{krishna2017visualgenome,
98
+ title={Visual Genome: Connecting Language and Vision Using Crowdsourced Dense Image Annotations},
99
+ 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},
100
+ journal={International Journal of Computer Vision},
101
+ year={2017}
102
+ }
103
+ ```
104
+
105
+ ## Disclaimer
106
+
107
+ This repository is not affiliated with, endorsed by, or maintained by the original Visual Genome authors.
108
+
109
+ The data is provided as-is for convenience. Users are responsible for verifying the dataset version, file integrity, license terms, and suitability for their own use cases.