Datasets:
Tasks:
Image Classification
Sub-tasks:
multi-class-image-classification
Languages:
English
Size:
100K<n<1M
ArXiv:
License:
dunno how to fic
Browse files- README.md +43 -0
- rvl_cdip_easyOCR.py +0 -3
README.md
CHANGED
@@ -19,6 +19,49 @@ task_ids:
|
|
19 |
- multi-class-image-classification
|
20 |
paperswithcode_id: rvl-cdip
|
21 |
pretty_name: RVL-CDIP-EasyOCR
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
---
|
23 |
|
24 |
# Dataset Card for RVL-CDIP
|
|
|
19 |
- multi-class-image-classification
|
20 |
paperswithcode_id: rvl-cdip
|
21 |
pretty_name: RVL-CDIP-EasyOCR
|
22 |
+
dataset_info:
|
23 |
+
features:
|
24 |
+
- name: image
|
25 |
+
dtype: image
|
26 |
+
- name: label
|
27 |
+
dtype:
|
28 |
+
class_label:
|
29 |
+
names:
|
30 |
+
'0': letter
|
31 |
+
'1': form
|
32 |
+
'2': email
|
33 |
+
'3': handwritten
|
34 |
+
'4': advertisement
|
35 |
+
'5': scientific report
|
36 |
+
'6': scientific publication
|
37 |
+
'7': specification
|
38 |
+
'8': file folder
|
39 |
+
'9': news article
|
40 |
+
'10': budget
|
41 |
+
'11': invoice
|
42 |
+
'12': presentation
|
43 |
+
'13': questionnaire
|
44 |
+
'14': resume
|
45 |
+
'15': memo
|
46 |
+
- name: id
|
47 |
+
dtype: string
|
48 |
+
- name: words
|
49 |
+
dtype: string
|
50 |
+
- name: boxes
|
51 |
+
dtype: int32
|
52 |
+
|
53 |
+
splits:
|
54 |
+
- name: train
|
55 |
+
num_bytes: 38816373360
|
56 |
+
num_examples: 320000
|
57 |
+
- name: test
|
58 |
+
num_bytes: 4863300853
|
59 |
+
num_examples: 40000
|
60 |
+
- name: validation
|
61 |
+
num_bytes: 4868685208
|
62 |
+
num_examples: 40000
|
63 |
+
download_size: 38779484559
|
64 |
+
dataset_size: 48548359421
|
65 |
---
|
66 |
|
67 |
# Dataset Card for RVL-CDIP
|
rvl_cdip_easyOCR.py
CHANGED
@@ -92,12 +92,9 @@ class RvlCdipEasyOCR(datasets.GeneratorBasedBuilder):
|
|
92 |
"boxes": datasets.Sequence(datasets.Sequence(datasets.Value("int32"))),
|
93 |
}
|
94 |
),
|
95 |
-
# supervised_keys=("image", "label"),
|
96 |
homepage=_HOMEPAGE,
|
97 |
citation=_CITATION,
|
98 |
license=_LICENSE,
|
99 |
-
task_templates=[
|
100 |
-
],
|
101 |
)
|
102 |
|
103 |
def _split_generators(self, dl_manager):
|
|
|
92 |
"boxes": datasets.Sequence(datasets.Sequence(datasets.Value("int32"))),
|
93 |
}
|
94 |
),
|
|
|
95 |
homepage=_HOMEPAGE,
|
96 |
citation=_CITATION,
|
97 |
license=_LICENSE,
|
|
|
|
|
98 |
)
|
99 |
|
100 |
def _split_generators(self, dl_manager):
|