File size: 922 Bytes
74b668a
 
617c122
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
cbaf981
 
 
 
74b668a
20db990
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
---

license: apache-2.0
configs:
- config_name: default
  data_files:
  - split: test
    path: data/test-*
dataset_info:
  features:
  - name: image
    dtype: image
  - name: comment
    dtype: string
  - name: content
    dtype: string
  - name: source
    dtype: string
  splits:
  - name: test
    num_bytes: 35550442.0
    num_examples: 82
  download_size: 35340425
  dataset_size: 35550442.0
---


<div align="center">

![HOCR Logo](./assets/hocr.png)

# 📄 HOCR: Hard OCR Samples for evaluating OCR models

</div>

This dataset contains a few samples of real world documents that are hard for OCR models to parse properly — collected from various sources.

## Usage

You can load up the dataset via Huggingface's `datasets` library and use it as you see fit.

```python

from datasets import load_dataset



dataset = load_dataset("chonkie-ai/hocr", split="train")

```