BereketARetta commited on
Commit
bd31f54
·
verified ·
1 Parent(s): d892056

Upload 2 files

Browse files
Files changed (2) hide show
  1. metadata.json +162 -0
  2. test.zip +3 -0
metadata.json ADDED
@@ -0,0 +1,162 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "@context": {
3
+ "sc": "https://schema.org/",
4
+ "cr": "https://mlcommons.org/croissant/",
5
+ "dct": "http://purl.org/dc/terms/",
6
+ "rai": "https://mlcommons.org/croissant/RAI/"
7
+ },
8
+ "@type": "sc:Dataset",
9
+ "dct:conformsTo": "http://mlcommons.org/croissant/1.0",
10
+ "name": "Fidel: A Large-Scale Sentence Level Amharic OCR Dataset",
11
+ "description": "Fidel is a comprehensive dataset for Amharic Optical Character Recognition (OCR) at the sentence level. It contains a diverse collection of Amharic text images from handwritten, typed, and synthetic sources, organized into train and test splits. This dataset aims to advance language technology for Amharic, serving critical applications such as digital ID initiatives, document digitization, and automated form processing in Ethiopia.",
12
+ "url": "https://dataverse.harvard.edu/dataset/fidel",
13
+ "license": "CC BY 4.0",
14
+ "creator": {
15
+ "@type": "sc:Person",
16
+ "name": "Tunga Tessema, Bereket Retta, Blessed Guda, Gabrial Zencha, Carmel Sagbo"
17
+ },
18
+ "citeAs": "@inproceedings{fidel2025,\n title={Fidel: A Large-Scale Sentence Level Amharic OCR Dataset},\n author={[Authors]},\n booktitle={39th Conference on Neural Information Processing Systems (NeurIPS 2025)},\n year={2025}\n}",
19
+ "datePublished": "2025",
20
+ "inLanguage": "am",
21
+ "distribution": [
22
+ {
23
+ "@id": "train_csv",
24
+ "@type": "cr:FileObject",
25
+ "contentUrl": "train/labels.csv",
26
+ "encodingFormat": "text/csv"
27
+ },
28
+ {
29
+ "@id": "test_csv",
30
+ "@type": "cr:FileObject",
31
+ "contentUrl": "test/labels.csv",
32
+ "encodingFormat": "text/csv"
33
+ },
34
+ {
35
+ "@id": "train_images",
36
+ "@type": "cr:FileSet",
37
+ "contentUrl": "train",
38
+ "includes": "*.jpg",
39
+ "encodingFormat": "image/jpeg"
40
+ },
41
+ {
42
+ "@id": "test_images",
43
+ "@type": "cr:FileSet",
44
+ "contentUrl": "test",
45
+ "includes": "*.jpg",
46
+ "encodingFormat": "image/jpeg"
47
+ }
48
+ ],
49
+ "cr:recordSet": [
50
+ {
51
+ "@id": "train_data",
52
+ "@type": "cr:RecordSet",
53
+ "key": "image_id",
54
+ "split": "train",
55
+ "field": [
56
+ {
57
+ "@id": "train_data/image_content",
58
+ "@type": "cr:Field",
59
+ "dataType": "sc:ImageObject",
60
+ "source": {
61
+ "fileSet": { "@id": "train_images" },
62
+ "extract": { "fileProperty": "content" }
63
+ }
64
+ },
65
+ {
66
+ "@id": "train_data/image_id",
67
+ "@type": "cr:Field",
68
+ "dataType": "sc:Text",
69
+ "source": {
70
+ "fileSet": { "@id": "train_images" },
71
+ "extract": { "fileProperty": "image_filename" },
72
+ "transform": { "regex": "([^/]*)\\.jpg" }
73
+ }
74
+ },
75
+ {
76
+ "@id": "train_data/text_label",
77
+ "@type": "cr:Field",
78
+ "dataType": "sc:Text",
79
+ "source": {
80
+ "fileObject": { "@id": "train_csv" },
81
+ "column": "text"
82
+ },
83
+ "references": {
84
+ "fileObject": { "@id": "train_csv" },
85
+ "column": "image_filename"
86
+ }
87
+ },
88
+ {
89
+ "@id": "train_data/source_type",
90
+ "@type": "cr:Field",
91
+ "dataType": "sc:Text",
92
+ "source": {
93
+ "fileObject": { "@id": "train_csv" },
94
+ "column": "source"
95
+ },
96
+ "references": {
97
+ "fileObject": { "@id": "train_csv" },
98
+ "column": "image_filename"
99
+ }
100
+ }
101
+ ]
102
+ },
103
+ {
104
+ "@id": "test_data",
105
+ "@type": "cr:RecordSet",
106
+ "key": "image_id",
107
+ "split": "test",
108
+ "field": [
109
+ {
110
+ "@id": "test_data/image_content",
111
+ "@type": "cr:Field",
112
+ "dataType": "sc:ImageObject",
113
+ "source": {
114
+ "fileSet": { "@id": "test_images" },
115
+ "extract": { "fileProperty": "content" }
116
+ }
117
+ },
118
+ {
119
+ "@id": "test_data/image_id",
120
+ "@type": "cr:Field",
121
+ "dataType": "sc:Text",
122
+ "source": {
123
+ "fileSet": { "@id": "test_images" },
124
+ "extract": { "fileProperty": "filename" },
125
+ "transform": { "regex": "([^/]*)\\.jpg" }
126
+ }
127
+ },
128
+ {
129
+ "@id": "test_data/text_label",
130
+ "@type": "cr:Field",
131
+ "dataType": "sc:Text",
132
+ "source": {
133
+ "fileObject": { "@id": "test_csv" },
134
+ "column": "text"
135
+ },
136
+ "references": {
137
+ "fileObject": { "@id": "test_csv" },
138
+ "column": "image_filename"
139
+ }
140
+ },
141
+ {
142
+ "@id": "test_data/source_type",
143
+ "@type": "cr:Field",
144
+ "dataType": "sc:Text",
145
+ "source": {
146
+ "fileObject": { "@id": "test_csv" },
147
+ "column": "source"
148
+ },
149
+ "references": {
150
+ "fileObject": { "@id": "test_csv" },
151
+ "column": "image_filename"
152
+ }
153
+ }
154
+ ]
155
+ }
156
+ ],
157
+ "rai:dataCollection": "The dataset was collected through contributions from native Amharic writers for the handwritten part, compiled from existing digital documents for the typed part, and generated using data augmentation for the synthetic part.",
158
+ "rai:dataCollectionTimeframe": "2024-2025",
159
+ "rai:dataAnnotationPlatform": "Custom annotation platform for validating transcriptions",
160
+ "rai:annotatorDemographics": "Contributors for handwritten samples included diverse age groups (18-65), balanced gender representation, and participants from different regions of Ethiopia.",
161
+ "rai:personalSensitiveInformation": "The dataset does not contain any personally identifiable information of the contributors."
162
+ }
test.zip ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0625790f3818e5ded12e5857534e6518405ede1908d97dc8d93b7437b14f98fc
3
+ size 4566704900