Datasets:

Formats:
parquet
Languages:
English
Size:
< 1K
ArXiv:
Libraries:
Datasets
pandas
License:
robiks commited on
Commit
5edbd15
·
verified ·
1 Parent(s): 5aa542d

Upload dataset

Browse files
Files changed (2) hide show
  1. README.md +158 -7
  2. data/test-00000-of-00001.parquet +3 -0
README.md CHANGED
@@ -1,10 +1,161 @@
1
- ---
2
- language:
3
- - en
4
- pretty_name: RealKIE-FCC-Verified
5
- size_categories:
6
- - n<1K
7
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8
  The RealKIE-FCC-Verified test set includes single and multi-page invoices sourced from the Federal Communications Commission (FCC) to evaluate key information extraction (KIE) performance. It contains 75 documents, with: a) a common JSON schema and b) corresponding expected JSON responses. This release resolves two critical issues present in the original test set:
9
 
10
  a) Line Item Grouping: Fields previously treated as independent entries are now grouped within each individual line item, aligning the annotations with real-world invoice structure.
 
1
+ ---
2
+ language:
3
+ - en
4
+ pretty_name: RealKIE-FCC-Verified
5
+ size_categories:
6
+ - n<1K
7
+ configs:
8
+ - config_name: default
9
+ data_files:
10
+ - split: test
11
+ path: data/test-*
12
+ dataset_info:
13
+ features:
14
+ - name: id
15
+ dtype: string
16
+ - name: image_files
17
+ list: string
18
+ - name: text
19
+ dtype: string
20
+ - name: json_schema
21
+ struct:
22
+ - name: type
23
+ dtype: string
24
+ - name: properties
25
+ struct:
26
+ - name: Agency
27
+ struct:
28
+ - name: type
29
+ dtype: string
30
+ - name: description
31
+ dtype: string
32
+ - name: Advertiser
33
+ struct:
34
+ - name: type
35
+ dtype: string
36
+ - name: description
37
+ dtype: string
38
+ - name: GrossTotal
39
+ struct:
40
+ - name: anyOf
41
+ list:
42
+ - name: type
43
+ dtype: string
44
+ - name: description
45
+ dtype: string
46
+ - name: PaymentTerms
47
+ struct:
48
+ - name: anyOf
49
+ list:
50
+ - name: type
51
+ dtype: string
52
+ - name: description
53
+ dtype: string
54
+ - name: AgencyCommission
55
+ struct:
56
+ - name: anyOf
57
+ list:
58
+ - name: type
59
+ dtype: string
60
+ - name: description
61
+ dtype: string
62
+ - name: NetAmountDue
63
+ struct:
64
+ - name: anyOf
65
+ list:
66
+ - name: type
67
+ dtype: string
68
+ - name: description
69
+ dtype: string
70
+ - name: LineItems
71
+ struct:
72
+ - name: type
73
+ dtype: string
74
+ - name: description
75
+ dtype: string
76
+ - name: items
77
+ struct:
78
+ - name: type
79
+ dtype: string
80
+ - name: properties
81
+ struct:
82
+ - name: LineItemRate
83
+ struct:
84
+ - name: anyOf
85
+ list:
86
+ - name: type
87
+ dtype: string
88
+ - name: description
89
+ dtype: string
90
+ - name: LineItemDays
91
+ struct:
92
+ - name: anyOf
93
+ list:
94
+ - name: type
95
+ dtype: string
96
+ - name: description
97
+ dtype: string
98
+ - name: LineItemStartDate
99
+ struct:
100
+ - name: anyOf
101
+ list:
102
+ - name: type
103
+ dtype: string
104
+ - name: description
105
+ dtype: string
106
+ - name: LineItemEndDate
107
+ struct:
108
+ - name: anyOf
109
+ list:
110
+ - name: type
111
+ dtype: string
112
+ - name: description
113
+ dtype: string
114
+ - name: LineItemDescription
115
+ struct:
116
+ - name: anyOf
117
+ list:
118
+ - name: type
119
+ dtype: string
120
+ - name: description
121
+ dtype: string
122
+ - name: required
123
+ list: string
124
+ - name: required
125
+ list: string
126
+ - name: json_response
127
+ struct:
128
+ - name: Agency
129
+ dtype: string
130
+ - name: Advertiser
131
+ dtype: string
132
+ - name: GrossTotal
133
+ dtype: float64
134
+ - name: PaymentTerms
135
+ dtype: string
136
+ - name: AgencyCommission
137
+ dtype: float64
138
+ - name: NetAmountDue
139
+ dtype: float64
140
+ - name: LineItems
141
+ list:
142
+ - name: LineItemDescription
143
+ dtype: string
144
+ - name: LineItemStartDate
145
+ dtype: string
146
+ - name: LineItemEndDate
147
+ dtype: string
148
+ - name: LineItemDays
149
+ dtype: string
150
+ - name: LineItemRate
151
+ dtype: float64
152
+ splits:
153
+ - name: test
154
+ num_bytes: 1276040
155
+ num_examples: 75
156
+ download_size: 393330
157
+ dataset_size: 1276040
158
+ ---
159
  The RealKIE-FCC-Verified test set includes single and multi-page invoices sourced from the Federal Communications Commission (FCC) to evaluate key information extraction (KIE) performance. It contains 75 documents, with: a) a common JSON schema and b) corresponding expected JSON responses. This release resolves two critical issues present in the original test set:
160
 
161
  a) Line Item Grouping: Fields previously treated as independent entries are now grouped within each individual line item, aligning the annotations with real-world invoice structure.
data/test-00000-of-00001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c0fb260c58066c59cbcf2a42ad63a5d138adba2993629d154b4946f44af3846a
3
+ size 393330