File size: 1,747 Bytes
b60bc7a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
---

language:
- en
license: apache-2.0
task_categories:
- image-text-to-text
pretty_name: ITT-Purpose
size_categories:
- 100K<n<1M
tags:
- multimodal
- image-text-to-text
- ocr
- table-qa
- latex
- vlm
- benchmark
dataset_info:
  features:
  - name: id
    dtype: string
  - name: image
    dtype: image
  - name: prompt
    dtype: string
  - name: response
    dtype: string
  - name: style
    dtype: string
  splits:
  - name: train
    num_examples: 100
  config_name: default
---


# ITT-Purpose

**Author:** convence

**ITT-Purpose** is a premium, hard, and clean benchmark dataset of **100** unique samples 
for training and evaluating image-to-text-to-text (Vision-Language) models.

## Dataset Structure

Each sample contains:
- `id`: A unique UUID string identifying the sample.
- `image`: The rendered visual document containing styled text, code configs, or structured tables.
- `prompt`: A high-difficulty instruction requesting visual layout parsing, math calculating, or semantic reasoning.
- `response`: The clean, correct ground truth text.
- `style`: One of three styles (`meaning`, `formatting`, `table`).

## Styles Covered

1. **Meaning**: Renders complex technical document segments with multi-hop semantic reasoning questions.
2. **Text Formatting**: Renders nested JSON, YAML configs, and Python functions, demanding code structure and detail extraction.
3. **Table**: Renders dense telemetry data tables with borders, demanding cell lookups, calculated aggregates, or full markdown table generation.

## Usage

```python

from datasets import load_dataset



ds = load_dataset("convence/ITT-Purpose", split="train")

print(ds[0])

```

## License

Apache 2.0