davanstrien HF Staff commited on
Commit
e2650fe
·
verified ·
1 Parent(s): e798fa7

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +61 -27
README.md CHANGED
@@ -1,29 +1,63 @@
1
  ---
2
- dataset_info:
3
- features:
4
- - name: image
5
- dtype: image
6
- - name: page_id
7
- dtype: string
8
- - name: page_type
9
- dtype: string
10
- - name: page_number
11
- dtype: string
12
- - name: ocr_text
13
- dtype: string
14
- - name: markdown
15
- dtype: string
16
- - name: inference_info
17
- dtype: string
18
- splits:
19
- - name: train
20
- num_bytes: 5726830.0
21
- num_examples: 8
22
- download_size: 5705914
23
- dataset_size: 5726830.0
24
- configs:
25
- - config_name: default
26
- data_files:
27
- - split: train
28
- path: data/train-*
29
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ tags:
3
+ - ocr
4
+ - document-processing
5
+ - glm-ocr
6
+ - markdown
7
+ - uv-script
8
+ - generated
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
  ---
10
+
11
+ # Document OCR using GLM-OCR
12
+
13
+ This dataset contains OCR results from images in [davanstrien/ocr-affordances-pages](https://huggingface.co/datasets/davanstrien/ocr-affordances-pages) using GLM-OCR, a compact 0.9B OCR model achieving SOTA performance.
14
+
15
+ ## Processing Details
16
+
17
+ - **Source Dataset**: [davanstrien/ocr-affordances-pages](https://huggingface.co/datasets/davanstrien/ocr-affordances-pages)
18
+ - **Model**: [zai-org/GLM-OCR](https://huggingface.co/zai-org/GLM-OCR)
19
+ - **Task**: text recognition
20
+ - **Number of Samples**: 8
21
+ - **Processing Time**: 2.9 min
22
+ - **Processing Date**: 2026-06-05 14:15 UTC
23
+
24
+ ### Configuration
25
+
26
+ - **Image Column**: `image`
27
+ - **Output Column**: `markdown`
28
+ - **Dataset Split**: `train`
29
+ - **Batch Size**: 16
30
+ - **Max Model Length**: 8,192 tokens
31
+ - **Max Output Tokens**: 8,192
32
+ - **Temperature**: 0.01
33
+ - **Top P**: 1e-05
34
+ - **GPU Memory Utilization**: 80.0%
35
+
36
+ ## Model Information
37
+
38
+ GLM-OCR is a compact, high-performance OCR model:
39
+ - 0.9B parameters
40
+ - 94.62% on OmniDocBench V1.5
41
+ - CogViT visual encoder + GLM-0.5B language decoder
42
+ - Multi-Token Prediction (MTP) loss for efficiency
43
+ - Multilingual: zh, en, fr, es, ru, de, ja, ko
44
+ - MIT licensed
45
+
46
+ ## Dataset Structure
47
+
48
+ The dataset contains all original columns plus:
49
+ - `markdown`: The extracted text in markdown format
50
+ - `inference_info`: JSON list tracking all OCR models applied to this dataset
51
+
52
+ ## Reproduction
53
+
54
+ ```bash
55
+ uv run https://huggingface.co/datasets/uv-scripts/ocr/raw/main/glm-ocr.py \
56
+ davanstrien/ocr-affordances-pages \
57
+ <output-dataset> \
58
+ --image-column image \
59
+ --batch-size 16 \
60
+ --task ocr
61
+ ```
62
+
63
+ Generated with [UV Scripts](https://huggingface.co/uv-scripts)