Eioss commited on
Commit
872dc4f
·
verified ·
1 Parent(s): 960ab6a

Add files using upload-large-folder tool

Browse files
Files changed (1) hide show
  1. README.md +72 -0
README.md ADDED
@@ -0,0 +1,72 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ task_categories:
4
+ - image-to-text
5
+ - visual-question-answering
6
+ - document-question-answering
7
+ language:
8
+ - en
9
+ - zh
10
+ tags:
11
+ - ocr
12
+ - document-understanding
13
+ - multimodal
14
+ size_categories:
15
+ - 1K<n<10K
16
+ viewer: false
17
+ ---
18
+
19
+ # CC-OCR V2: Benchmarking Large Multimodal Models for Literacy in Real-world Document Processing
20
+
21
+ ## Dataset Summary
22
+
23
+ **CC-OCR V2** is a comprehensive and challenging OCR benchmark tailored to real-world document processing. It focuses on practical enterprise document processing tasks and incorporates hard and corner cases that are critical yet underrepresented in prior benchmarks.
24
+
25
+ The dataset comprises **7,093 high-difficulty samples** covering 5 major OCR-centric tracks: Text Recognition, Document Parsing, Document Grounding, Key Information Extraction, and Document Question Answering.
26
+
27
+ ## Dataset Structure
28
+
29
+ The dataset is structured hierarchically by `task` and `sub_task`. Below is the statistical breakdown of the dataset:
30
+
31
+ | Task | Sub-task | Samples |
32
+ | :--- | :--- | :--- |
33
+ | **Extraction** | business_transactions | 340 |
34
+ | | public_services | 369 |
35
+ | | regulated_records | 300 |
36
+ | **Grounding** | object_grounding | 734 |
37
+ | | text_grounding | 734 |
38
+ | **Parsing** | complex_table_parsing | 300 |
39
+ | | formula_parsing | 100 |
40
+ | | general_documents_parsing | 300 |
41
+ | | info_board_parsing | 26 |
42
+ | | molecular_parsing | 100 |
43
+ | **QA** | blueprint_qa | 100 |
44
+ | | dashboards_fact_qa | 400 |
45
+ | | dashboards_numeric_qa | 500 |
46
+ | | financial_documents_qa | 1000 |
47
+ | **Recognition** | multi_lingual_recognition | 640 |
48
+ | | natural_scene_recognition | 1150 |
49
+ | **Total** | | **7093** |
50
+
51
+ ## Data Instances
52
+
53
+ Each sample in the dataset contains the following fields:
54
+
55
+ - `task` (str): The primary track/category of the task (e.g., `Extraction`, `QA`, `Parsing`).
56
+ - `sub_task` (str): The specific sub-category (e.g., `business_transactions`, `financial_documents_qa`).
57
+ - `scenario` (str): The specific application scenario or document type.
58
+ - `question` (str): The prompt or instruction given to the model.
59
+ - `images_list` (str): A string containing the image file paths associated with the sample.
60
+ - `image` (list of images): The actual images rendered by the viewer.
61
+ - `answer` (str): The ground truth answer or expected output (often in JSON or structured text format).
62
+
63
+ ## Citation
64
+
65
+ ```bibtex
66
+ @article{xu2026ccocr,
67
+ title={CC-OCR V2: Benchmarking Large Multimodal Models for Literacy in Real-world Document Processing},
68
+ author={Zhipeng Xu and Junhao Ji and Zulong Chen and Zhenghao Liu and Qing Liu and Chunyi Peng and Zubao Qin and Ze Xu and Jianqiang Wan and Jun Tang and Zhibo Yang and Shuai Bai and Dayiheng Liu},
69
+ journal={arXiv preprint arXiv:2605.03903},
70
+ year={2026}
71
+ }
72
+ ```