nihalbaig commited on
Commit
61d1111
·
verified ·
1 Parent(s): 2d57295

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +26 -0
README.md ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ # Document VQA Dataset
3
+
4
+ This dataset contains question-answer pairs for document visual question answering tasks.
5
+
6
+ ## Dataset Structure
7
+
8
+ - `image`: URL to the document image
9
+ - `question`: Question in English
10
+ - `answers`: Answers in Bengali
11
+ - `questionId`: Unique identifier for each question
12
+ - `question_types`: Type of question (extraction)
13
+ - `docId`: Document identifier
14
+ - `fonts`: Font information
15
+
16
+ ## Usage
17
+
18
+ ```python
19
+ from datasets import load_dataset
20
+
21
+ dataset = load_dataset("nihalbaig/docvqa_syn")
22
+ ```
23
+
24
+ ## Example
25
+ You can view the images directly in the dataset viewer on HuggingFace.
26
+