--- language: - en license: other size_categories: - 1K, 'width': 754, 'height': 1000, 'category': 'advertisement', 'ocr_words': [...], 'word_boxes': [[...]], 'ocr_paragraphs': [...], 'paragraph_boxes': [[...]], 'label': 4 } ``` ### Data Fields - `image`: A `PIL.Image.Image` object containing a document. - `width`: image's width. - `height`: image's height. - `category`: class label. - `ocr_words`: list of OCRed words. - `word_boxes`: list of box coordinates in `(xmin, ymin, xmax, ymax)` format (Pascal VOC). - `ocr_paragraphs`: list of OCRed paragraphs. - `paragraph_boxes`: list of box coordinates in `(xmin, ymin, xmax, ymax)` format (Pascal VOC). - `label`: an `int` classification label.
Class Label Mappings ```json { "0": "letter", "1": "form", "2": "email", "3": "handwritten", "4": "advertisement", "5": "scientific report", "6": "scientific publication", "7": "specification", "8": "file folder", "9": "news article", "10": "budget", "11": "invoice", "12": "presentation", "13": "questionnaire", "14": "resume", "15": "memo" } ```
### Data Splits | |train|test|validation| |----------|----:|----:|---------:| |# of examples|3200|400|400| The dataset was split in proportions similar to those of ImageNet. - 3200 images were used for training, - 400 images for validation, and - 400 images for testing. ## Dataset Creation ### Curation Rationale From the paper: > This work makes available a new labelled subset of the IIT-CDIP collection, containing 400,000 document images across 16 categories, useful for training new CNNs for document analysis. ### Source Data #### Initial Data Collection and Normalization The same as in the IIT-CDIP collection. #### Who are the source language producers? The same as in the IIT-CDIP collection. ### Annotations #### Annotation process The same as in the IIT-CDIP collection. #### Who are the annotators? The same as in the IIT-CDIP collection. ### Personal and Sensitive Information [More Information Needed] ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed] ### Discussion of Biases [More Information Needed] ### Other Known Limitations [More Information Needed] ## Additional Information ### Dataset Curators The dataset was curated by the authors - Adam W. Harley, Alex Ufkes, and Konstantinos G. Derpanis. ### Licensing Information RVL-CDIP is a subset of IIT-CDIP, which came from the [Legacy Tobacco Document Library](https://www.industrydocuments.ucsf.edu/tobacco/), for which license information can be found [here](https://www.industrydocuments.ucsf.edu/help/copyright/). ### Citation Information ```bibtex @inproceedings{harley2015icdar, title = {Evaluation of Deep Convolutional Nets for Document Image Classification and Retrieval}, author = {Adam W Harley and Alex Ufkes and Konstantinos G Derpanis}, booktitle = {International Conference on Document Analysis and Recognition ({ICDAR})}}, year = {2015} } ``` ### Contributions Thanks to [@dnaveenr](https://github.com/dnaveenr) for adding this dataset.