Add dataset card and metadata for ILVR/CoMT
#2
by nielsr HF Staff - opened
README.md
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
task_categories:
|
| 4 |
+
- image-text-to-text
|
| 5 |
+
language:
|
| 6 |
+
- en
|
| 7 |
+
tags:
|
| 8 |
+
- multimodal
|
| 9 |
+
- reasoning
|
| 10 |
+
- chain-of-thought
|
| 11 |
+
---
|
| 12 |
+
|
| 13 |
+
# CoMT (Chain of Multi-modal Thought) for ILVR
|
| 14 |
+
|
| 15 |
+
This repository contains the processed CoMT (Chain of Multi-modal Thought) dataset used for the paper [Interleaved Latent Visual Reasoning with Selective Perceptual Modeling](https://huggingface.co/papers/2512.05665).
|
| 16 |
+
|
| 17 |
+
[**Project Code**](https://github.com/XD111ds/ILVR) | [**Paper**](https://huggingface.co/papers/2512.05665)
|
| 18 |
+
|
| 19 |
+
## Introduction
|
| 20 |
+
Interleaved Latent Visual Reasoning (ILVR) is a framework that unifies dynamic state evolution with precise perceptual modeling. It interleaves textual generation with latent visual representations that act as specific, evolving cues for subsequent reasoning. The CoMT dataset is used to train and evaluate this paradigm, focusing on sequential multimodal reasoning.
|
| 21 |
+
|
| 22 |
+
## Data Structure
|
| 23 |
+
The dataset is organized into training and testing splits, along with associated image files:
|
| 24 |
+
- `TRAIN.jsonl`: Training samples.
|
| 25 |
+
- `TEST.jsonl`: Testing samples.
|
| 26 |
+
- `comt.tar.gz`: Contains the image files required for the tasks.
|
| 27 |
+
|
| 28 |
+
### Data Format
|
| 29 |
+
The dataset follows the JSONL format with the following fields:
|
| 30 |
+
- `text_input`: The question or instruction.
|
| 31 |
+
- `image_input`: Initial input images.
|
| 32 |
+
- `sequence_plan`: The interleaved chain-of-thought rationale containing "text" and "helper_image" paths.
|
| 33 |
+
|
| 34 |
+
### Directory Setup
|
| 35 |
+
To use this data with the [official ILVR implementation](https://github.com/XD111ds/ILVR), organize the directory as follows:
|
| 36 |
+
```text
|
| 37 |
+
data/
|
| 38 |
+
βββ TRAIN.jsonl
|
| 39 |
+
βββ TEST.jsonl
|
| 40 |
+
βββ images_comt/ <-- Extracted from comt.tar.gz
|
| 41 |
+
βββ creation/
|
| 42 |
+
βββ ...
|
| 43 |
+
```
|
| 44 |
+
|
| 45 |
+
## Citation
|
| 46 |
+
If you find this dataset or the ILVR framework useful, please cite the following paper:
|
| 47 |
+
|
| 48 |
+
```bibtex
|
| 49 |
+
@article{dong2025interleaved,
|
| 50 |
+
title={Interleaved Latent Visual Reasoning with Selective Perceptual Modeling},
|
| 51 |
+
author={Shuai Dong and Siyuan Wang and Xingyu Liu and Zhongyu Wei},
|
| 52 |
+
year={2025},
|
| 53 |
+
eprint={2512.05665},
|
| 54 |
+
archivePrefix={arXiv},
|
| 55 |
+
primaryClass={cs.CL},
|
| 56 |
+
url={https://arxiv.org/abs/2512.05665},
|
| 57 |
+
}
|
| 58 |
+
```
|