mito0o852 commited on
Commit
c2ba62b
1 Parent(s): fcb9cbb

[Add] README content

Browse files
Files changed (1) hide show
  1. README.md +30 -0
README.md CHANGED
@@ -16,7 +16,37 @@ configs:
16
  data_files:
17
  - split: train
18
  path: data/train-*
 
19
  ---
20
  # Dataset Card for "MATH_1GRADE"
21
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
22
  [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
 
16
  data_files:
17
  - split: train
18
  path: data/train-*
19
+ license: apache-2.0
20
  ---
21
  # Dataset Card for "MATH_1GRADE"
22
 
23
+ # 1st Grade Math Problems Dataset
24
+
25
+ This dataset, available on Hugging Face, offers a unique collection of math problems tailored for first-grade students. The problems have been synthetically generated using Python scripts and are designed to challenge and enhance the mathematical skills of young learners in an engaging and accessible way. This README provides an overview of the dataset, including its structure, contents, and how to use it for educational purposes or machine learning tasks.
26
+
27
+ ## Dataset Description
28
+
29
+ - **Domain**: Education/Mathematics
30
+ - **Grade Level**: 1st Grade
31
+ - **Contents**: The dataset consists of simple arithmetic problems suitable for first graders, involving basic operations such as addition, subtraction, and understanding of negative numbers.
32
+ - **Data Format**: CSV/JSON
33
+ - **Dataset Size**: [Specify size: e.g., 10,000 problems]
34
+ - **Language**: English
35
+
36
+ ## Data Structure
37
+
38
+ The dataset is structured as follows:
39
+
40
+ - `formula`: A string representing the math problem. It includes numbers and operations (addition, subtraction) formatted as text. For example, "140 + 515 - -441 - -34 + 155".
41
+ - `result`: The answer to the math problem, represented as a floating-point number for operations resulting in non-integer values, and an integer for whole numbers.
42
+
43
+ ### Example Entry
44
+
45
+ ```json
46
+ {
47
+ "formula": "940 + 515 - -441 - -34 + 155",
48
+ "result": 2085
49
+ }
50
+ ```
51
+
52
  [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)