Datasets:
Upload Dataset
Browse files- README.md +69 -3
- train/dataset_info.json +65 -0
- train/train-00000-of-99999.parquet +3 -0
README.md
CHANGED
|
@@ -1,3 +1,69 @@
|
|
| 1 |
-
---
|
| 2 |
-
|
| 3 |
-
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
+
license: apache-2.0
|
| 5 |
+
task_categories:
|
| 6 |
+
- image-text-to-text
|
| 7 |
+
pretty_name: ITT-Purpose
|
| 8 |
+
size_categories:
|
| 9 |
+
- 100K<n<1M
|
| 10 |
+
tags:
|
| 11 |
+
- multimodal
|
| 12 |
+
- image-text-to-text
|
| 13 |
+
- ocr
|
| 14 |
+
- table-qa
|
| 15 |
+
- latex
|
| 16 |
+
- vlm
|
| 17 |
+
- benchmark
|
| 18 |
+
dataset_info:
|
| 19 |
+
features:
|
| 20 |
+
- name: id
|
| 21 |
+
dtype: string
|
| 22 |
+
- name: image
|
| 23 |
+
dtype: image
|
| 24 |
+
- name: prompt
|
| 25 |
+
dtype: string
|
| 26 |
+
- name: response
|
| 27 |
+
dtype: string
|
| 28 |
+
- name: style
|
| 29 |
+
dtype: string
|
| 30 |
+
splits:
|
| 31 |
+
- name: train
|
| 32 |
+
num_examples: 100
|
| 33 |
+
config_name: default
|
| 34 |
+
---
|
| 35 |
+
|
| 36 |
+
# ITT-Purpose
|
| 37 |
+
|
| 38 |
+
**Author:** convence
|
| 39 |
+
|
| 40 |
+
**ITT-Purpose** is a premium, hard, and clean benchmark dataset of **100** unique samples
|
| 41 |
+
for training and evaluating image-to-text-to-text (Vision-Language) models.
|
| 42 |
+
|
| 43 |
+
## Dataset Structure
|
| 44 |
+
|
| 45 |
+
Each sample contains:
|
| 46 |
+
- `id`: A unique UUID string identifying the sample.
|
| 47 |
+
- `image`: The rendered visual document containing styled text, code configs, or structured tables.
|
| 48 |
+
- `prompt`: A high-difficulty instruction requesting visual layout parsing, math calculating, or semantic reasoning.
|
| 49 |
+
- `response`: The clean, correct ground truth text.
|
| 50 |
+
- `style`: One of three styles (`meaning`, `formatting`, `table`).
|
| 51 |
+
|
| 52 |
+
## Styles Covered
|
| 53 |
+
|
| 54 |
+
1. **Meaning**: Renders complex technical document segments with multi-hop semantic reasoning questions.
|
| 55 |
+
2. **Text Formatting**: Renders nested JSON, YAML configs, and Python functions, demanding code structure and detail extraction.
|
| 56 |
+
3. **Table**: Renders dense telemetry data tables with borders, demanding cell lookups, calculated aggregates, or full markdown table generation.
|
| 57 |
+
|
| 58 |
+
## Usage
|
| 59 |
+
|
| 60 |
+
```python
|
| 61 |
+
from datasets import load_dataset
|
| 62 |
+
|
| 63 |
+
ds = load_dataset("convence/ITT-Purpose", split="train")
|
| 64 |
+
print(ds[0])
|
| 65 |
+
```
|
| 66 |
+
|
| 67 |
+
## License
|
| 68 |
+
|
| 69 |
+
Apache 2.0
|
train/dataset_info.json
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"builder_name": "ITT-Purpose",
|
| 3 |
+
"citation": "",
|
| 4 |
+
"config_name": "default",
|
| 5 |
+
"dataset_name": "ITT-Purpose",
|
| 6 |
+
"dataset_size": 100,
|
| 7 |
+
"description": "ITT-Purpose is a premium, high-quality, hard image-to-text-to-text benchmark dataset designed to evaluate Vision-Language Models (VLM) on document parsing, data extraction, and complex visual reasoning tasks across three styles: Meaning, Text Formatting, and Table.",
|
| 8 |
+
"features": {
|
| 9 |
+
"id": {
|
| 10 |
+
"dtype": "string",
|
| 11 |
+
"_type": "Value"
|
| 12 |
+
},
|
| 13 |
+
"image": {
|
| 14 |
+
"_type": "Image"
|
| 15 |
+
},
|
| 16 |
+
"prompt": {
|
| 17 |
+
"dtype": "string",
|
| 18 |
+
"_type": "Value"
|
| 19 |
+
},
|
| 20 |
+
"response": {
|
| 21 |
+
"dtype": "string",
|
| 22 |
+
"_type": "Value"
|
| 23 |
+
},
|
| 24 |
+
"style": {
|
| 25 |
+
"dtype": "string",
|
| 26 |
+
"_type": "Value"
|
| 27 |
+
}
|
| 28 |
+
},
|
| 29 |
+
"homepage": "",
|
| 30 |
+
"license": "apache-2.0",
|
| 31 |
+
"splits": {
|
| 32 |
+
"train": {
|
| 33 |
+
"name": "train",
|
| 34 |
+
"num_examples": 100,
|
| 35 |
+
"dataset_name": "ITT-Purpose"
|
| 36 |
+
}
|
| 37 |
+
},
|
| 38 |
+
"version": {
|
| 39 |
+
"version_str": "0.1.0",
|
| 40 |
+
"major": 0,
|
| 41 |
+
"minor": 1,
|
| 42 |
+
"patch": 0
|
| 43 |
+
},
|
| 44 |
+
"task_categories": [
|
| 45 |
+
"image-text-to-text",
|
| 46 |
+
"visual-question-answering"
|
| 47 |
+
],
|
| 48 |
+
"language": [
|
| 49 |
+
"en"
|
| 50 |
+
],
|
| 51 |
+
"pretty_name": "ITT-Purpose",
|
| 52 |
+
"size_categories": [
|
| 53 |
+
"100K<n<1M"
|
| 54 |
+
],
|
| 55 |
+
"tags": [
|
| 56 |
+
"multimodal",
|
| 57 |
+
"image-text-to-text",
|
| 58 |
+
"ocr",
|
| 59 |
+
"table-qa",
|
| 60 |
+
"latex",
|
| 61 |
+
"vlm",
|
| 62 |
+
"benchmark"
|
| 63 |
+
],
|
| 64 |
+
"author": "convence"
|
| 65 |
+
}
|
train/train-00000-of-99999.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:52879a18268636edf3035dd932e0bd9a1408e7a5d9c41943c195a0ad1f382fcf
|
| 3 |
+
size 2169321
|