mhjiang0408 commited on
Commit
245f486
Β·
verified Β·
1 Parent(s): 6133502

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +108 -1
README.md CHANGED
@@ -19,4 +19,111 @@ tags:
19
  - live
20
  size_categories:
21
  - 1K<n<10K
22
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  - live
20
  size_categories:
21
  - 1K<n<10K
22
+ ---
23
+ # MAC: A Live Benchmark for Multimodal Large Language Models in Scientific Understanding
24
+
25
+ [![arXiv](https://img.shields.io/badge/arXiv-2501.01234-b31b1b.svg)](https://arxiv.org/abs/2501.XXXXX)
26
+ [![GitHub](https://img.shields.io/badge/GitHub-Repository-green)](https://github.com/mhjiang0408/MAC_Bench)
27
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
28
+
29
+ ## πŸ“‹ Dataset Description
30
+
31
+ MAC is a comprehensive live benchmark designed to evaluate multimodal large language models (MLLMs) on scientific understanding tasks. The dataset focuses on scientific journal cover understanding, providing challenging testbeds for assessing visual-textual comprehension capabilities of MLLMs in academic domains.
32
+
33
+ ### 🎯 Tasks
34
+
35
+ **1. Image-to-Text Understanding**
36
+ - **Input**: Scientific journal cover image
37
+ - **Task**: Select the most accurate textual description from 4 multiple-choice options
38
+ - **Question Format**: "Which of the following options best describe the cover image?"
39
+
40
+ **2. Text-to-Image Understanding**
41
+ - **Input**: Journal cover story text description
42
+ - **Task**: Select the corresponding image from 4 visual options
43
+ - **Question Format**: "Which of the following options best describe the cover story?"
44
+
45
+ ### πŸ“Š Dataset Statistics
46
+
47
+ | Attribute | Value |
48
+ |-----------|-------|
49
+ | **Source Journals** | Nature, Science, Cell, ACS journals |
50
+ | **Task Types** | 2 (Image2Text, Text2Image) |
51
+ | **Options per Question** | 4 (A, B, C, D) |
52
+ | **Languages** | English |
53
+ | **Image Format** | High-resolution PNG journal covers |
54
+
55
+
56
+ ### πŸš€ Quick Start
57
+
58
+ #### Loading the Dataset
59
+
60
+ ```python
61
+ from datasets import load_dataset
62
+ dataset = load_dataset("mhjiang0408/MAC_Bench")
63
+ ```
64
+
65
+ #### Data Fields
66
+
67
+ **Image-to-Text Task Fields** (`image2text_info.csv`):
68
+
69
+ ```python
70
+ {
71
+ 'journal': str, # Source journal name (e.g., "NATURE BIOTECHNOLOGY")
72
+ 'id': str, # Unique identifier (e.g., "42_7")
73
+ 'question': str, # Task question
74
+ 'cover_image': str, # Path to cover image
75
+ 'answer': str, # Correct answer ('A', 'B', 'C', 'D')
76
+ 'option_A': str, # Option A text
77
+ 'option_A_path': str, # Path to option A story file
78
+ 'option_A_embedding_name': str, # Embedding method name
79
+ 'option_A_embedding_id': str, # Embedding identifier
80
+ # Similar fields for options B, C, D
81
+ 'split': str # Dataset split ('train', 'val', 'test')
82
+ }
83
+ ```
84
+
85
+ ### πŸ”§ Evaluation Framework
86
+
87
+ Use the official MAC_Bench evaluation toolkit:
88
+
89
+ ```bash
90
+ # Clone repository
91
+ git clone https://github.com/mhjiang0408/MAC_Bench.git
92
+ cd MAC_Bench
93
+ ./setup.sh
94
+ ```
95
+
96
+
97
+ ### πŸŽ“ Use Cases
98
+
99
+ - **MLLM Evaluation**: Systematic benchmarking of multimodal large language models
100
+ - **Scientific Vision-Language Research**: Cross-modal understanding in academic domains
101
+ - **Educational AI**: Development of AI systems for scientific content comprehension
102
+ - **Academic Publishing Tools**: Automated analysis of journal covers and content
103
+
104
+
105
+ ### πŸ“š Citation
106
+
107
+ If you use the MAC dataset in your research, please cite our paper:
108
+
109
+ ```bibtex
110
+ @article{jiang2025mac,
111
+ title={MAC: A Live Benchmark for Multimodal Large Language Models in Scientific Understanding},
112
+ author={Jiang, Minghao and others},
113
+ journal={arXiv preprint arXiv:2501.XXXXX},
114
+ year={2025},
115
+ url={https://arxiv.org/abs/2501.XXXXX}
116
+ }
117
+ ```
118
+
119
+ ### πŸ“„ License
120
+
121
+ This dataset is released under the MIT License. See [LICENSE](https://github.com/mhjiang0408/MAC_Bench/blob/main/LICENSE) for details.
122
+
123
+ ### 🀝 Contributing
124
+
125
+ We welcome contributions to improve the dataset and benchmark:
126
+
127
+ 1. Report issues via [GitHub Issues](https://github.com/mhjiang0408/MAC_Bench/issues)
128
+ 2. Submit pull requests for improvements
129
+ 3. Join discussions in our [GitHub Discussions](https://github.com/mhjiang0408/MAC_Bench/discussions)