m-biriuchinskii commited on
Commit
c1e5646
·
verified ·
1 Parent(s): d42a03a

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +43 -0
README.md CHANGED
@@ -53,3 +53,46 @@ configs:
53
  - split: test
54
  path: data/test-*
55
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
53
  - split: test
54
  path: data/test-*
55
  ---
56
+
57
+ This dataset is a filtered version of the *ICDAR2017* Competition on Handwritten Text Recognition, focusing on monograph texts written between 1800 and 1900. It consists of a total of **957 documents**, divided into training, validation, and testing sets, and is designed for post-correction of OCR (Optical Character Recognition) text.
58
+
59
+ - **Total Documents**: 957
60
+ - **Training Set**: 765
61
+ - **Validation Set**: 95
62
+ - **Test Set**: 97
63
+
64
+ ## Purpose
65
+ The dataset aims to improve the accuracy of digitized texts by providing a reliable Ground Truth for comparison and correction, specifically addressing the challenges of French text of 19th century.
66
+
67
+ ## Dataset Columns Description
68
+
69
+ This dataset contains several columns with detailed information about OCR (Optical Character Recognition) outputs and their corresponding ground truths (GT). Below is a description of each column:
70
+
71
+ | Column Name | Data Type | Description |
72
+ |---------------------------|--------------|-----------------------------------------------------------------------------------------------|
73
+ | **File** | `string` | Name or identifier of the file associated with the OCR and GT data. |
74
+ | **Date** | `int64` | Date of the document, encoded as an integer. |
75
+ | **Region_OCR** | `string` | OCR-recognized region of text. |
76
+ | **Region_OCR_aligned** | `string` | Aligned OCR-recognized region for better comparison with GT data. |
77
+ | **Region_GT_aligned** | `string` | Aligned ground truth region for validation against OCR results. |
78
+ | **Sentence_OCR_aligned** | `string` | Aligned OCR-recognized sentences for improved accuracy in comparisons. |
79
+ | **Sentence_GT_aligned** | `string` | Aligned ground truth sentences corresponding to OCR results. |
80
+ | **Sentence_OCR** | `string` | Original OCR-recognized sentences, unaligned. |
81
+ | **Sentence_GT** | `string` | Original ground truth sentences, unaligned. |
82
+ | **Distance** | `int64` | The computed edit distance between OCR sentences and ground truth. |
83
+ | **CER** | `float64` | Character Error Rate (CER) for OCR sentences compared to the ground truth. Values range from 0 to 0.29. |
84
+ | **WER** | `float64` | Word Error Rate (WER) for OCR sentences compared to the ground truth. Values range from 0 to 1.5. |
85
+ | **Sentence_OCR_corrupted** | `string` | OCR sentences with additional corruption introduced for synthetic error analysis. |
86
+ | **corrupted_cer** | `float64` | Character Error Rate for corrupted OCR sentences compared to the ground truth. Values range from 0 to 0.35. |
87
+ | **corrupted_wer** | `float64` | Word Error Rate for corrupted OCR sentences compared to the ground truth. |
88
+
89
+ This structured dataset is designed to analyze and evaluate OCR post-correction performance with both real and synthetic data.
90
+
91
+ ## Author Information
92
+ Prepared by **Mikhail Biriuchinskii**, an engineer in Natural Language Processing at Sorbonne University.
93
+
94
+ ## Original Dataset Reference
95
+ For more information, visit the original dataset source: [ICDAR2017 Competition on Post-OCR Text Correction](http://l3i.univ-larochelle.fr/ICDAR2017PostOCR).
96
+
97
+ ## Copyright
98
+ The original corpus is publicly accessible, and I do not hold any rights to this deployment of the corpus.