Update README.md
Browse files
README.md
CHANGED
@@ -56,6 +56,29 @@ size_categories:
|
|
56 |
|
57 |
**This dataset is a subset (1%) of the original [aharley/rvl_cdip](https://huggingface.co/datasets/aharley/rvl_cdip) merged with the corresponding annotations from [jordyvl/rvl_cdip_easyocr](https://huggingface.co/datasets/jordyvl/rvl_cdip_easyocr).**
|
58 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
59 |
## Table of Contents
|
60 |
- [Dataset Description](#dataset-description)
|
61 |
- [Dataset Summary](#dataset-summary)
|
|
|
56 |
|
57 |
**This dataset is a subset (1%) of the original [aharley/rvl_cdip](https://huggingface.co/datasets/aharley/rvl_cdip) merged with the corresponding annotations from [jordyvl/rvl_cdip_easyocr](https://huggingface.co/datasets/jordyvl/rvl_cdip_easyocr).**
|
58 |
|
59 |
+
You can easily and quickly load it:
|
60 |
+
|
61 |
+
```python
|
62 |
+
dataset = load_dataset("dvgodoy/rvl_cdip_mini")
|
63 |
+
```
|
64 |
+
|
65 |
+
```
|
66 |
+
DatasetDict({
|
67 |
+
train: Dataset({
|
68 |
+
features: ['image', 'width', 'height', 'category', 'ocr_words', 'word_boxes', 'ocr_paragraphs', 'paragraph_boxes'],
|
69 |
+
num_rows: 3200
|
70 |
+
})
|
71 |
+
validation: Dataset({
|
72 |
+
features: ['image', 'width', 'height', 'category', 'ocr_words', 'word_boxes', 'ocr_paragraphs', 'paragraph_boxes'],
|
73 |
+
num_rows: 400
|
74 |
+
})
|
75 |
+
test: Dataset({
|
76 |
+
features: ['image', 'width', 'height', 'category', 'ocr_words', 'word_boxes', 'ocr_paragraphs', 'paragraph_boxes'],
|
77 |
+
num_rows: 400
|
78 |
+
})
|
79 |
+
})
|
80 |
+
```
|
81 |
+
|
82 |
## Table of Contents
|
83 |
- [Dataset Description](#dataset-description)
|
84 |
- [Dataset Summary](#dataset-summary)
|