Add task category and citation
Browse filesThis PR adds the `image-to-text` task category to better categorize the dataset and adds a citation to the relevant paper. It also adds a link to the project page.
README.md
CHANGED
@@ -1,28 +1,41 @@
|
|
1 |
-
---
|
2 |
-
license: apache-2.0
|
3 |
-
dataset_info:
|
4 |
-
features:
|
5 |
-
- name: id
|
6 |
-
dtype: string
|
7 |
-
- name: image
|
8 |
-
dtype: image
|
9 |
-
- name: descriptive_q
|
10 |
-
dtype: string
|
11 |
-
- name: descriptive_a
|
12 |
-
dtype: string
|
13 |
-
- name: reasoning_q
|
14 |
-
dtype: string
|
15 |
-
- name: reasoning_a
|
16 |
-
dtype: string
|
17 |
-
splits:
|
18 |
-
- name: test
|
19 |
-
num_bytes: 277763523.0
|
20 |
-
num_examples: 50
|
21 |
-
download_size: 277777671
|
22 |
-
dataset_size: 277763523.0
|
23 |
-
configs:
|
24 |
-
- config_name: default
|
25 |
-
data_files:
|
26 |
-
- split: test
|
27 |
-
path: data/test-*
|
28 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: apache-2.0
|
3 |
+
dataset_info:
|
4 |
+
features:
|
5 |
+
- name: id
|
6 |
+
dtype: string
|
7 |
+
- name: image
|
8 |
+
dtype: image
|
9 |
+
- name: descriptive_q
|
10 |
+
dtype: string
|
11 |
+
- name: descriptive_a
|
12 |
+
dtype: string
|
13 |
+
- name: reasoning_q
|
14 |
+
dtype: string
|
15 |
+
- name: reasoning_a
|
16 |
+
dtype: string
|
17 |
+
splits:
|
18 |
+
- name: test
|
19 |
+
num_bytes: 277763523.0
|
20 |
+
num_examples: 50
|
21 |
+
download_size: 277777671
|
22 |
+
dataset_size: 277763523.0
|
23 |
+
configs:
|
24 |
+
- config_name: default
|
25 |
+
data_files:
|
26 |
+
- split: test
|
27 |
+
path: data/test-*
|
28 |
+
task_categories:
|
29 |
+
- image-to-text
|
30 |
+
citation: >
|
31 |
+
@article{deitke2024molmo,
|
32 |
+
title={Molmo and pixmo: Open weights and open data for state-of-the-art multimodal models},
|
33 |
+
author={Deitke, Matt and Clark, Christopher and Lee, Sangho and Tripathi, Rohun and Yang, Yue and Park, Jae Sung and Salehi, Mohammadreza and Muennighoff, Niklas and Lo, Kyle and Soldaini, Luca and others},
|
34 |
+
journal={arXiv preprint arXiv:2409.17146},
|
35 |
+
year={2024}
|
36 |
+
}
|
37 |
+
---
|
38 |
+
|
39 |
+
This dataset contains image-text pairs for various types of text-rich images including charts, diagrams, tables, and documents.
|
40 |
+
|
41 |
+
[Project Page](https://yueyang1996.github.io/cosyn/)
|