kapsb2171 commited on
Commit
1e290fd
·
verified ·
1 Parent(s): 648e695

Upload docvqa.json

Browse files
Files changed (1) hide show
  1. docvqa.json +29 -0
docvqa.json ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "data": [
3
+ {
4
+ "document_image": "path/to/image1.jpg",
5
+ "questions": [
6
+ {
7
+ "question": "What is the date of the document?",
8
+ "answer": "August 26, 2024",
9
+ "bbox": [ [50, 100, 150, 200] ] // Optional
10
+ },
11
+ {
12
+ "question": "Who is the recipient?",
13
+ "answer": "John Doe",
14
+ "bbox": [ [200, 250, 300, 350] ] // Optional
15
+ }
16
+ ]
17
+ },
18
+ {
19
+ "document_image": "path/to/image2.jpg",
20
+ "questions": [
21
+ {
22
+ "question": "What is the total amount?",
23
+ "answer": "$500",
24
+ "bbox": [ [60, 120, 160, 220] ] // Optional
25
+ }
26
+ ]
27
+ }
28
+ ]
29
+ }