andynik commited on
Commit
d449d70
·
verified ·
1 Parent(s): 0beee53

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +23 -9
README.md CHANGED
@@ -15,13 +15,9 @@ size_categories:
15
 
16
  [![Paper](https://img.shields.io/badge/Paper-arXiv%3A2412.11908-B31B1B)](https://arxiv.org/abs/2412.11908)
17
  [![Hugging Face Dataset](https://img.shields.io/badge/Hugging%20Face-Dataset-blue)](https://huggingface.co/datasets/andynik/combi-puzzles)
18
- [![GitHub Repo](https://img.shields.io/badge/GitHub-Repo-181717?logo=github)](https://github.com/andynik/combi-puzzles)
19
 
20
- This repository contains the Combi-Puzzles dataset used in the research paper titled "Can Language Models Rival Mathematics Students? Evaluating Mathematical Reasoning through Textual Manipulation and Human Experiments."
21
-
22
- ## Abstract
23
-
24
- In this study, we examine the ability of recent large language models (LLMs), including LLaMA-2, LLaMA-3.1, GPT-4, and Mixtral, in solving mathematical problems in combinatorics. We introduce the Combi-Puzzles dataset, consisting of 125 problem variants derived from 25 core combinatorial problems, to facilitate these comparisons. The dataset assesses the generalizability of LLMs and includes variations like adversarial, parameterization, and linguistic obfuscation to test models and humans alike.
25
 
26
  ## Dataset Description
27
 
@@ -34,15 +30,33 @@ The Combi-Puzzles dataset includes:
34
  - **Parameterisation**: Altered numerical parameters.
35
  - **Linguistic Obfuscation**: Narrative fictional stories with problem context.
36
 
37
- These variations are designed to thoroughly evaluate problem-solving strategies across different formats.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
38
 
39
  ## Additional Information
40
 
41
- The Combi-Puzzles dataset contains problems that have parameters expressed in string format (e.g. 12 as "twelve"). These problems are identified as:
42
 
43
  - **Problems' ID with String Parameters**: 6, 12, 19, 20.
44
 
45
- Please note that all parameters are stored as `strings` in the dataset to ensure consistency.
46
 
47
  ## Usage
48
 
 
15
 
16
  [![Paper](https://img.shields.io/badge/Paper-arXiv%3A2412.11908-B31B1B)](https://arxiv.org/abs/2412.11908)
17
  [![Hugging Face Dataset](https://img.shields.io/badge/Hugging%20Face-Dataset-blue)](https://huggingface.co/datasets/andynik/combi-puzzles)
18
+ [![GitHub Repo](https://img.shields.io/badge/GitHub-Repository-181717?logo=github)](https://github.com/andynik/combi-puzzles)
19
 
20
+ This repository contains the Combi-Puzzles dataset used in the research paper titled "Can Language Models Rival Mathematics Students? Evaluating Mathematical Reasoning through Textual Manipulation and Human Experiments." These variations are designed to evaluate problem-solving strategies across different formats.
 
 
 
 
21
 
22
  ## Dataset Description
23
 
 
30
  - **Parameterisation**: Altered numerical parameters.
31
  - **Linguistic Obfuscation**: Narrative fictional stories with problem context.
32
 
33
+ ## JSON file structure
34
+
35
+ | Field | Type | Description |
36
+ |--------------------------------|-------------------------|---------------------------------------------------------------------------------------------------|
37
+ | `id` | integer | Unique identifier for this problem entry. |
38
+ | `versions` | array of object | All textual variants of the problem. |
39
+ | `versions[].version` | string | Label for the problem variant. |
40
+ | `versions[].problem_statement` | string | The problem text or template; may contain `$paramX$` placeholders. |
41
+ | `parameters` | array of object | Concrete parameter-sets to fill into templates in some versions. |
42
+ | `parameters[].group_id` | integer | Identifier grouping together one set of `param1`–`param4` values (if present). |
43
+ | `parameters[].param1` | integer or string | First placeholder value. |
44
+ | `parameters[].param2` | integer or string | Second placeholder value. |
45
+ | `parameters[].param3` | integer or string | Third placeholder value. |
46
+ | `parameters[].param4` | integer or string | Fourth placeholder value. |
47
+
48
+
49
+ ## Problem Example
50
+
51
+ ![Problem Example](images/p10.png)
52
 
53
  ## Additional Information
54
 
55
+ The Combi-Puzzles dataset contains problems that have parameters expressed in string format (e.g. 12 as "twelve"):
56
 
57
  - **Problems' ID with String Parameters**: 6, 12, 19, 20.
58
 
59
+ Please note that all parameters are stored as `strings` in the dataset.
60
 
61
  ## Usage
62