Eioss commited on
Commit
d1f5b66
·
verified ·
1 Parent(s): df5cf0e

Update Dataset Card with features config

Browse files
Files changed (1) hide show
  1. README.md +22 -14
README.md CHANGED
@@ -13,6 +13,26 @@ tags:
13
  - multimodal
14
  size_categories:
15
  - 1K<n<10K
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
  ---
17
 
18
  # CC-OCR V2: Benchmarking Large Multimodal Models for Literacy in Real-world Document Processing
@@ -55,22 +75,10 @@ Each sample in the dataset contains the following fields:
55
  - `sub_task` (str): The specific sub-category (e.g., `business_transactions`, `financial_documents_qa`).
56
  - `scenario` (str): The specific application scenario or document type.
57
  - `question` (str): The prompt or instruction given to the model.
58
- - `images_list` (list of str): A list of image file paths associated with the sample.
 
59
  - `answer` (str): The ground truth answer or expected output (often in JSON or structured text format).
60
 
61
- ### Example
62
-
63
- ```json
64
- {
65
- "task": "Extraction",
66
- "sub_task": "business_transactions",
67
- "scenario": "receipt",
68
- "question": "Extract the key information from the receipt image...",
69
- "images_list": ["images/receipt_001.jpg"],
70
- "answer": "{\n \"Departure Date\": \"05 NOV 20\",\n \"Arrival Date\": \"06 NOV 20\"\n}"
71
- }
72
- ```
73
-
74
  ## Citation
75
 
76
  ```bibtex
 
13
  - multimodal
14
  size_categories:
15
  - 1K<n<10K
16
+ configs:
17
+ - config_name: default
18
+ data_files:
19
+ - split: train
20
+ path: data.jsonl
21
+ features:
22
+ - name: task
23
+ dtype: string
24
+ - name: sub_task
25
+ dtype: string
26
+ - name: scenario
27
+ dtype: string
28
+ - name: question
29
+ dtype: string
30
+ - name: images_list
31
+ dtype: string
32
+ - name: answer
33
+ dtype: string
34
+ - name: image
35
+ sequence: image
36
  ---
37
 
38
  # CC-OCR V2: Benchmarking Large Multimodal Models for Literacy in Real-world Document Processing
 
75
  - `sub_task` (str): The specific sub-category (e.g., `business_transactions`, `financial_documents_qa`).
76
  - `scenario` (str): The specific application scenario or document type.
77
  - `question` (str): The prompt or instruction given to the model.
78
+ - `images_list` (str): A string containing the image file paths associated with the sample.
79
+ - `image` (list of images): The actual images rendered by the viewer.
80
  - `answer` (str): The ground truth answer or expected output (often in JSON or structured text format).
81
 
 
 
 
 
 
 
 
 
 
 
 
 
 
82
  ## Citation
83
 
84
  ```bibtex