winvswon78 commited on
Commit
d094d12
·
verified ·
1 Parent(s): 5b80cbc

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +62 -32
README.md CHANGED
@@ -2,7 +2,7 @@
2
  language:
3
  - en
4
  size_categories:
5
- - 1K<n<10K
6
  task_categories:
7
  - question-answering
8
  - visual-question-answering
@@ -44,10 +44,8 @@ dataset_info:
44
  dtype: string
45
  splits:
46
  - name: test
47
- num_bytes: 49337131.36
48
- num_examples: 1176
49
- download_size: 38090732
50
- dataset_size: 49337131.36
51
  - config_name: Coding
52
  features:
53
  - name: pid
@@ -84,10 +82,8 @@ dataset_info:
84
  dtype: string
85
  splits:
86
  - name: test
87
- num_bytes: 201047028.0
88
- num_examples: 564
89
- download_size: 156921633
90
- dataset_size: 201047028.0
91
  - config_name: Math
92
  features:
93
  - name: pid
@@ -124,10 +120,8 @@ dataset_info:
124
  dtype: string
125
  splits:
126
  - name: test
127
- num_bytes: 55727097.0
128
- num_examples: 892
129
- download_size: 49594723
130
- dataset_size: 55727097.0
131
  - config_name: Physics
132
  features:
133
  - name: pid
@@ -164,10 +158,8 @@ dataset_info:
164
  dtype: string
165
  splits:
166
  - name: test
167
- num_bytes: 20512520.0
168
- num_examples: 156
169
- download_size: 13597019
170
- dataset_size: 20512520.0
171
  - config_name: All
172
  features:
173
  - name: pid
@@ -204,10 +196,8 @@ dataset_info:
204
  dtype: string
205
  splits:
206
  - name: test
207
- num_bytes: 326623776.36
208
- num_examples: 2788
209
- download_size: 258203107
210
- dataset_size: 326623776.36
211
  configs:
212
  - config_name: Chemistry
213
  data_files:
@@ -236,22 +226,62 @@ tags:
236
  - coding
237
  ---
238
 
239
- ## Dataset Description
240
 
241
- **EMMA (Enhanced MultiModal reAsoning)** is a benchmark targeting organic multimodal reasoning across mathematics, physics, chemistry, and coding.
242
- EMMA tasks demand advanced cross-modal reasoning that cannot be solved by thinking separately in each modality, offering an enhanced test suite for MLLMs' reasoning capabilities.
243
 
244
- EMMA is composed of 2,788 problems, of which 1,796 are newly constructed, across four domains. Within each subject, we further provide fine-grained labels for each question based on the specific skills it measures.
 
 
 
 
 
245
 
246
- <p align="center">
247
- <img src="https://huggingface.co/datasets/luckychao/EMMA/resolve/main/emma_composition.jpg" width="30%"> <br>
248
- </p>
249
 
250
- ## Paper Information
251
 
252
- - Paper: https://www.arxiv.org/abs/2501.05444
253
- - Code: https://github.com/hychaochao/EMMA
254
- - Project: https://emma-benchmark.github.io/
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
255
 
256
 
257
  ### Data Format
 
2
  language:
3
  - en
4
  size_categories:
5
+ - n<1K
6
  task_categories:
7
  - question-answering
8
  - visual-question-answering
 
44
  dtype: string
45
  splits:
46
  - name: test
47
+ num_examples: 8
48
+ download_size: 415466
 
 
49
  - config_name: Coding
50
  features:
51
  - name: pid
 
82
  dtype: string
83
  splits:
84
  - name: test
85
+ num_examples: 8
86
+ download_size: 1693180
 
 
87
  - config_name: Math
88
  features:
89
  - name: pid
 
120
  dtype: string
121
  splits:
122
  - name: test
123
+ num_examples: 8
124
+ download_size: 857062
 
 
125
  - config_name: Physics
126
  features:
127
  - name: pid
 
158
  dtype: string
159
  splits:
160
  - name: test
161
+ num_examples: 8
162
+ download_size: 566203
 
 
163
  - config_name: All
164
  features:
165
  - name: pid
 
196
  dtype: string
197
  splits:
198
  - name: test
199
+ num_examples: 32
200
+ download_size: 3534939
 
 
201
  configs:
202
  - config_name: Chemistry
203
  data_files:
 
226
  - coding
227
  ---
228
 
229
+ # EMMA Clone Dataset (Small Version)
230
 
231
+ **EMMA Stone** is a reduced version of the EMMA (Enhanced MultiModal reAsoning) benchmark with 8 samples per subject category, designed for quick testing and development.
 
232
 
233
+ This dataset contains:
234
+ - **Chemistry**: 8 samples
235
+ - **Coding**: 8 samples
236
+ - **Math**: 8 samples
237
+ - **Physics**: 8 samples
238
+ - **All**: 32 samples (8 from each category)
239
 
240
+ ## Usage
 
 
241
 
242
+ ### Loading with datasets library
243
 
244
+ ```python
245
+ from datasets import load_dataset
246
+
247
+ # Load specific subject
248
+ chemistry_data = load_dataset("winvswon78/emma_stone", "Chemistry", split="test")
249
+ math_data = load_dataset("winvswon78/emma_stone", "Math", split="test")
250
+ coding_data = load_dataset("winvswon78/emma_stone", "Coding", split="test")
251
+ physics_data = load_dataset("winvswon78/emma_stone", "Physics", split="test")
252
+
253
+ # Load all subjects combined
254
+ all_data = load_dataset("winvswon78/emma_stone", "All", split="test")
255
+
256
+ # Verify the dataset
257
+ print(f"Chemistry samples: {len(chemistry_data)}")
258
+ print(f"Math samples: {len(math_data)}")
259
+ print(f"Coding samples: {len(coding_data)}")
260
+ print(f"Physics samples: {len(physics_data)}")
261
+ print(f"All samples: {len(all_data)}")
262
+ print(f"Subject distribution in All: {all_data['subject']}")
263
+ ```
264
+
265
+ ### Alternative loading method
266
+
267
+ If you encounter issues with the config names, you can also load the data directly:
268
+
269
+ ```python
270
+ from datasets import Dataset
271
+ import pandas as pd
272
+
273
+ # Load specific subject directly
274
+ chemistry_df = pd.read_parquet("hf://datasets/winvswon78/emma_stone/Chemistry/test-00000-of-00001.parquet")
275
+ chemistry_dataset = Dataset.from_pandas(chemistry_df)
276
+
277
+ # Load all subjects
278
+ all_df = pd.read_parquet("hf://datasets/winvswon78/emma_stone/All/test-00000-of-00001.parquet")
279
+ all_dataset = Dataset.from_pandas(all_df)
280
+ ```
281
+
282
+ ## Original EMMA Information
283
+
284
+ This is a sampled version of the original EMMA benchmark targeting organic multimodal reasoning across mathematics, physics, chemistry, and coding. EMMA tasks demand advanced cross-modal reasoning that cannot be solved by thinking separately in each modality.
285
 
286
 
287
  ### Data Format