CoolFace
Datasetpublic

math-eval/TAL-SCQ5K

TAL-SCQ5K Dataset Description Dataset Summary TAL-SCQ5K-EN/TAL-SCQ5K-CN are high quality mathematical competition datasets in English and Chinese language created by TAL Education Group, each consisting of 5K questions(3K training and 2K testing). The questions are in the form of multiple-choice and cover mathematical topics at the primary,junior high and high school levels. In addition, detailed solution steps are provided to facilitate CoT training and all the… See the full description on the dataset page: https://huggingface.co/datasets/math-eval/TAL-SCQ5K.

sourceHugging Facemitupdated 3y agoView on Hugging Face
60likes1.4kdownloads
README.md133 linesDownload Raw Back to root
1---2license: mit3---4 5<h1 align="center">TAL-SCQ5K</h1>6 7## Dataset Description8 9### Dataset Summary10 11TAL-SCQ5K-EN/TAL-SCQ5K-CN are high quality mathematical competition datasets in English and Chinese language created by TAL Education Group, each consisting of 5K questions(3K training and 2K testing). The questions are in the form of multiple-choice and cover mathematical topics at the primary,junior high and high school levels. In addition, detailed solution steps are provided to facilitate CoT training and all the mathematical expressions in the questions have been presented as standard text-mode Latex.12 13### Supported Tasks and Leaderboards14 15[More Information Needed]16 17### Languages18 19The text in TAL-SCQ5K-EN is in English and TAL-SCQ5K-CN  is in Chinese.20 21## Dataset Structure22 23### Data Instances24 25```26{27	"dataset_name": "prime_math_competition_en_single_choice_8K_dev",28	"dataset_version": "2023-07-07",29	"qid": "244",30	"queId": "8afc802a8c304199b1040f11ffa2e92a",31	"competition_source_list": [],32	"difficulty": "2",33	"qtype": "single_choice",34	"problem": "A $14$-digit. number $666666 XY 444444$ is a multiple of $26$. If $X$ and $Y$ are both positive, what is the smallest vaue of $X+ Y$? ",35	"answer_option_list": [36		[{37			"aoVal": "A",38			"content": "$$3$$ "39		}],40		[{41			"aoVal": "B",42			"content": "$$4$$ "43		}],44		[{45			"aoVal": "C",46			"content": "$$9$$ "47		}],48		[{49			"aoVal": "D",50			"content": "$$14$$ "51		}],52		[{53			"aoVal": "E",54			"content": "None of the above "55		}]56	],57	"knowledge_point_routes": ["Overseas Competition->Knowledge Point->Number Theory Modules->Division without Remainders->Divisibility Rules"],58	"answer_analysis": ["Since $1001$ is a multiple of $13$, $111111 = 111 \\times 1001$ is also a multiple of $13$.  It follows that both $666666$ and $444444$ are both multiples of $26$.  $666666XY 444444 = 66666600000000 + XY 000000 + 444444$  $\\Rightarrow XY$ must be divisible by $13$.  Smallest $X+Y=1+3=4$. "],59	"answer_value": "B"60}61```62 63### Data Fields64 65* "dataset_name": identification of the source dataset name from which TAL-SCQ5K-EN/TAL-SCQ5K-CN has been created, use only for inner of TAL education group, please ignore.66* "dataset_version": identification of the source dataset version from which TAL-SCQ5K-EN/TAL-SCQ5K-CN has been created, use only for inner of TAL education group, please ignore.67* "qid": identification of local id of the question in the source dataset from which TAL-SCQ5K-EN/TAL-SCQ5K-CN has been created, use only for inner of TAL education group, please ignore.68* "queId": identification of global id of the question, use only for inner of TAL education group, please ignore.69* "competition_source_list": identification of math competitions in which the questions appeared, if have been logged.70* "difficulty": difficulty level of the questions, value ranged from 0 to 471* "qtype": question type, valued as "single_choice" for all the questions in this dataset indicates that all the questions are multiple-choice questions with unique ground-truth answer.72* "problem": the question string to a math competition question.73* "answer_option_list": answer choices to be selected74* "knowledge_point_routes": knowledge point route from coarse-grained to fine-grained.75* "answer_analysis": step-by-step answer analysis of the questions, which helps CoT training76* "answer_value": value of the ground-truth answer choice77 78 79### Data Splits80 81<style>82table th:first-of-type {83    width: 40%;84}85table th:nth-of-type(2) {86    width: 30%;87}88table th:nth-of-type(3) {89    width: 30%;90}91</style>92 93| name|train|test |94|:---:|:----:|:----:|95|TAL-SCQ5K-EN|3K  |2K  |96|TAL-SCQ5K-CN|3K  |2K  |97 98## Usage99 100Each of the above datasets is located in a separate sub-directory. To load an individual subset, use the data_dir argument of the load_dataset() function as follows:101 102```python103from datasets import load_dataset104 105# Load all subsets (share the same schema)106dataset = load_dataset("math-eval/TAL-SCQ5K")107 108# Load TAL-SCQ5K-EN109dataset = load_dataset("math-eval/TAL-SCQ5K", data_dir="TAL-SCQ5K-EN")110 111# Load TAL-SCQ5K-CN112dataset = load_dataset("math-eval/TAL-SCQ5K", data_dir="TAL-SCQ5K-CN")113 114```115 116 117## Additional Information118 119### Dataset Curators120 121[More Information Needed]122 123### Licensing Information124 125The TAL-SCQ5K dataset is licensed under the [MIT License](https://opensource.org/license/mit/)126 127### Citation Information128 129[More Information Needed]130 131### Contact132 133The original authors host this dataset on GitHub here: https://github.com/math-eval/TAL-SCQ5K You can submit inquiries to: matheval.ai@gmail.com