emelryan commited on
Commit
a878180
·
verified ·
1 Parent(s): e6ff4f5

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +31 -9
README.md CHANGED
@@ -1,5 +1,5 @@
1
  ---
2
- license: apache-2.0
3
  task_categories:
4
  - object-detection
5
  - image-to-text
@@ -16,6 +16,8 @@ tags:
16
  - synthetic-data
17
  - synthdog
18
  - hdf5
 
 
19
  pretty_name: OCR Synthetic Multilingual v1
20
  size_categories:
21
  - 10M<n<100M
@@ -25,9 +27,9 @@ size_categories:
25
 
26
  ## Overview
27
 
28
- Synthetically generated OCR training dataset for multilingual text detection and recognition, produced by the **SynthDoG** (Synthetic Document Generator) pipeline (v5 / text-effect).
29
 
30
- This dataset is designed for training end-to-end OCR models (detection + recognition) used in the **NeMo Retriever OCR** pipeline.
31
 
32
  ## Languages
33
 
@@ -43,6 +45,10 @@ This dataset is designed for training end-to-end OCR models (detection + recogni
43
 
44
  > Numbers in parentheses are the number of `.h5` files per split.
45
 
 
 
 
 
46
  ## Directory Layout
47
 
48
  ```
@@ -208,15 +214,31 @@ with h5py.File("en/train/train_000.h5", "r") as f:
208
  | Test | 221,867 samples (77 files) |
209
  | Validation | 220,157 samples (77 files) |
210
 
 
 
 
 
211
  ## Citation
212
 
213
- If you use this dataset, please cite:
 
 
 
 
 
 
 
 
 
 
 
214
 
215
  ```bibtex
216
- @misc{ocr_synthetic_multilingual_v1,
217
- title={OCR-Synthetic-Multilingual-v1},
218
- year={2025},
219
- publisher={Hugging Face},
220
- note={Synthetically generated multilingual OCR dataset produced by the SynthDoG pipeline (v5 / text-effect)}
 
221
  }
222
  ```
 
1
  ---
2
+ license: cc-by-4.0
3
  task_categories:
4
  - object-detection
5
  - image-to-text
 
16
  - synthetic-data
17
  - synthdog
18
  - hdf5
19
+ - nvidia
20
+ - nemotron
21
  pretty_name: OCR Synthetic Multilingual v1
22
  size_categories:
23
  - 10M<n<100M
 
27
 
28
  ## Overview
29
 
30
+ Large-scale synthetically generated OCR training dataset for multilingual text detection and recognition. The data was produced using a heavily modified and extended version of [SynthDoG](https://github.com/clovaai/donut/tree/master/synthdog) (Synthetic Document Generator), originally introduced in the [Donut](https://github.com/clovaai/donut) project by Kim et al.
31
 
32
+ This dataset was used to train [**Nemotron OCR v2**](https://huggingface.co/nvidia/nemotron-ocr-v2), a state-of-the-art multilingual OCR model that is part of the [NVIDIA NeMo Retriever](https://www.nvidia.com/en-us/ai-data-science/products/nemo/) collection.
33
 
34
  ## Languages
35
 
 
45
 
46
  > Numbers in parentheses are the number of `.h5` files per split.
47
 
48
+ ## Related Model
49
+
50
+ This dataset was created to train the detection, recognition, and relational components of [**Nemotron OCR v2**](https://huggingface.co/nvidia/nemotron-ocr-v2). See the model card for architecture details, evaluation results, and usage instructions.
51
+
52
  ## Directory Layout
53
 
54
  ```
 
214
  | Test | 221,867 samples (77 files) |
215
  | Validation | 220,157 samples (77 files) |
216
 
217
+ ## Acknowledgements
218
+
219
+ The synthetic data generation pipeline is based on [SynthDoG](https://github.com/clovaai/donut/tree/master/synthdog) from the Donut project, with substantial modifications to support additional languages, custom rendering effects, structured bounding-box annotations (word/line/paragraph levels with reading-order graphs), and HDF5 output.
220
+
221
  ## Citation
222
 
223
+ If you use this dataset, please cite both this dataset and the original SynthDoG work:
224
+
225
+ ```bibtex
226
+ @misc{chesler2026ocr_synthetic_multilingual,
227
+ title = {{OCR-Synthetic-Multilingual-v1}},
228
+ author = {Chesler, Ryan},
229
+ year = {2026},
230
+ publisher = {NVIDIA},
231
+ url = {https://huggingface.co/datasets/nvidia/OCR-Synthetic-Multilingual-v1},
232
+ note = {Synthetically generated multilingual OCR dataset built on a heavily modified SynthDoG pipeline}
233
+ }
234
+ ```
235
 
236
  ```bibtex
237
+ @inproceedings{kim2022donut,
238
+ title = {{OCR-free Document Understanding Transformer}},
239
+ author = {Kim, Geewook and Hong, Teakgyu and Yim, Moonbin and Nam, JeongYeon and Park, Jinyoung and Yim, Jinyeong and Hwang, Wonseok and Yun, Sangdoo and Han, Dongyoon and Park, Seunghyun},
240
+ booktitle = {European Conference on Computer Vision (ECCV)},
241
+ year = {2022},
242
+ publisher = {Springer}
243
  }
244
  ```