starride-teklia commited on
Commit
2a68e71
·
verified ·
1 Parent(s): a1bed48

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +120 -64
README.md CHANGED
@@ -1,64 +1,120 @@
1
- ---
2
- license: mit
3
- configs:
4
- - config_name: default
5
- data_files:
6
- - split: train
7
- path: data/train-*
8
- - split: test
9
- path: data/test-*
10
- - split: val
11
- path: data/val-*
12
- dataset_info:
13
- features:
14
- - name: page_arkindex_id
15
- dtype: string
16
- - name: page_image
17
- dtype: image
18
- - name: page_index
19
- dtype: int64
20
- - name: zone_orders
21
- sequence: int64
22
- - name: zone_polygons
23
- sequence:
24
- sequence:
25
- sequence: float64
26
- - name: zone_classes
27
- sequence:
28
- class_label:
29
- names:
30
- '0': HEADER-TITLE
31
- '1': HEADER-TEXT
32
- '2': SECTION-TITLE
33
- '3': ILLUSTRATION
34
- '4': ADVERTISEMENT
35
- '5': ANNOUNCEMENT
36
- '6': TITLE
37
- '7': TEXT
38
- '8': SUBTITLE
39
- '9': INSIDEHEADING
40
- '10': CAPTION
41
- '11': AUTHOR
42
- '12': TABLE
43
- '13': ILLUSTRATEDTEXT
44
- '14': TABLECONTENT
45
- '15': ASIDE
46
- - name: zone_texts
47
- sequence: string
48
- - name: zone_article_ids
49
- sequence: int64
50
- - name: zone_section_ids
51
- sequence: int64
52
- splits:
53
- - name: train
54
- num_bytes: 9252698919.392
55
- num_examples: 7957
56
- - name: test
57
- num_bytes: 498089523.0
58
- num_examples: 433
59
- - name: val
60
- num_bytes: 520680343.0
61
- num_examples: 446
62
- download_size: 10051632298
63
- dataset_size: 10271468785.392
64
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ configs:
4
+ - config_name: default
5
+ data_files:
6
+ - split: train
7
+ path: data/train-*
8
+ - split: test
9
+ path: data/test-*
10
+ - split: val
11
+ path: data/val-*
12
+ dataset_info:
13
+ features:
14
+ - name: page_arkindex_id
15
+ dtype: string
16
+ - name: page_image
17
+ dtype: image
18
+ - name: page_index
19
+ dtype: int64
20
+ - name: zone_orders
21
+ sequence: int64
22
+ - name: zone_polygons
23
+ sequence:
24
+ sequence:
25
+ sequence: float64
26
+ - name: zone_classes
27
+ sequence:
28
+ class_label:
29
+ names:
30
+ '0': HEADER-TITLE
31
+ '1': HEADER-TEXT
32
+ '2': SECTION-TITLE
33
+ '3': ILLUSTRATION
34
+ '4': ADVERTISEMENT
35
+ '5': ANNOUNCEMENT
36
+ '6': TITLE
37
+ '7': TEXT
38
+ '8': SUBTITLE
39
+ '9': INSIDEHEADING
40
+ '10': CAPTION
41
+ '11': AUTHOR
42
+ '12': TABLE
43
+ '13': ILLUSTRATEDTEXT
44
+ '14': TABLECONTENT
45
+ '15': ASIDE
46
+ - name: zone_texts
47
+ sequence: string
48
+ - name: zone_article_ids
49
+ sequence: int64
50
+ - name: zone_section_ids
51
+ sequence: int64
52
+ splits:
53
+ - name: train
54
+ num_bytes: 9252698919.392
55
+ num_examples: 7957
56
+ - name: test
57
+ num_bytes: 498089523
58
+ num_examples: 433
59
+ - name: val
60
+ num_bytes: 520680343
61
+ num_examples: 446
62
+ download_size: 10051632298
63
+ dataset_size: 10271468785.392
64
+ task_categories:
65
+ - image-to-text
66
+ - text-classification
67
+ - image-classification
68
+ - image-segmentation
69
+ language:
70
+ - fr
71
+ tags:
72
+ - newspapers
73
+ pretty_name: Newspaper Finlam La Liberté
74
+ ---
75
+
76
+ # Newspaper dataset: Finlam La Liberté
77
+
78
+ ## Dataset Description
79
+
80
+ - **Homepage:** [Finlam](https://finlam.projets.litislab.fr/)
81
+ - **Point of Contact:** [TEKLIA](https://teklia.com)
82
+
83
+ ## Dataset Summary
84
+
85
+ The **Finlam La Liberté** dataset includes 1500 issues from La Liberté, a French newspaper, from 1925 to 1928.
86
+
87
+ Each issue contains multiple pages, with one image for each page resized to a fixed height of 2500 pixels.
88
+
89
+ The dataset can be used to train end-to-end newspaper understanding models, with tasks including:
90
+ * Text zone detection and classification
91
+ * Reading order detection
92
+ * Article separation
93
+
94
+ The dataset was published during the Finlam project, supported by ANR grant xxx.
95
+
96
+ ### Split
97
+
98
+ | set | images | newspapers |
99
+ | ----- | ------:| ----------:|
100
+ | train | 7957 | 1350 |
101
+ | val | 446 | 75 |
102
+ | test | 433 | 75 |
103
+
104
+ ### Languages
105
+
106
+ All newspapers in the dataset are French.
107
+
108
+ ## Dataset Structure
109
+
110
+ ### Data Fields
111
+
112
+ - `page_arkindex_id`: The Arkindex element id corresponding to the current page.
113
+ - `page_index`: The index of the current page in the newspaper issue.
114
+ - `page_image`: a PIL.Image object containing the page image. Note that when accessing the image column (using dataset[0]["page_image"]), the image file is automatically decoded. Decoding of a large number of image files might take a significant amount of time. Thus it is important to first query the sample index before the "image" column, i.e. dataset[0]["page_image"] should always be preferred over dataset["page_image"][0].
115
+ - `zone_polygons`: the list of zone coordinates in the current page.
116
+ - `zone_texts`: the list of zone texts in the current page.
117
+ - `zone_classes`: the list of zone classes in the current page.
118
+ - `zone_orders`: the list of zone indexes in the current page, defining the reading order.
119
+ - `zone_article_id`: the list of article indexes defining in which article of the newspaper the current zone is located.
120
+ - `zone_section_id`: the list of section indexes defining in which section of the newspaper the current zone is located.