Karifannaa commited on
Commit
ea09f6f
·
verified ·
1 Parent(s): 4ba2cc2

Add comprehensive README with dataset info

Browse files
Files changed (1) hide show
  1. README.md +118 -33
README.md CHANGED
@@ -1,33 +1,118 @@
1
- ---
2
- dataset_info:
3
- features:
4
- - name: solution_id
5
- dtype: string
6
- - name: task_id
7
- dtype: string
8
- - name: example_id
9
- dtype: string
10
- - name: task_type
11
- dtype: string
12
- - name: score
13
- dtype: int64
14
- - name: parts_count
15
- dtype: int64
16
- - name: images_with_answer
17
- sequence: image
18
- - name: images_without_answer
19
- sequence: image
20
- - name: images_with_true_solution
21
- sequence: image
22
- splits:
23
- - name: train
24
- num_bytes: 70168062.0
25
- num_examples: 122
26
- download_size: 59500921
27
- dataset_size: 70168062.0
28
- configs:
29
- - config_name: default
30
- data_files:
31
- - split: train
32
- path: data/train-*
33
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # EGE Math Solutions Assessment Benchmark
2
+
3
+ ## Dataset Description
4
+
5
+ This dataset contains student solutions to Russian Unified State Exam (EGE) mathematics problems, with reference scores for benchmarking automated evaluation systems.
6
+
7
+ **🖼️ All images are properly embedded and accessible!**
8
+
9
+ The dataset includes three types of images for each solution:
10
+ - **Student solutions with correct answers shown** (152 images)
11
+ - **Student solutions without answers** for blind evaluation (152 images)
12
+ - **True/reference solutions** for each problem (144 images)
13
+
14
+ ## Dataset Statistics
15
+
16
+ - **Total examples**: 122
17
+ - **Total images**: 448
18
+ - **Task types**: 7
19
+ - **Score range**: 0-4 points
20
+
21
+ ### Task Types
22
+
23
+ | Task Type | Count |
24
+ |-----------|-------|
25
+ | Financial mathematics | 15 |
26
+ | Logarithmic inequalities | 19 |
27
+ | Number theory problem | 16 |
28
+ | Planimetric problem | 17 |
29
+ | Problem with parameters | 16 |
30
+ | Stereometric problem | 18 |
31
+ | Trigonometric equations | 21 |
32
+
33
+ ### Score Distribution
34
+
35
+ | Score | Count | Percentage |
36
+ |-------|-------|------------|
37
+ | 0 | 28 | 23.0% |
38
+ | 1 | 40 | 32.8% |
39
+ | 2 | 35 | 28.7% |
40
+ | 3 | 11 | 9.0% |
41
+ | 4 | 8 | 6.6% |
42
+
43
+ ## Dataset Structure
44
+
45
+ Each example contains:
46
+
47
+ - `solution_id`: Unique identifier for the solution
48
+ - `task_id`: Task type ID (13-19)
49
+ - `example_id`: Specific example identifier
50
+ - `task_type`: Description of the task type in English
51
+ - `score`: Reference score (0-4)
52
+ - `parts_count`: Number of parts in the solution
53
+ - `images_with_answer`: List of PIL Images containing student solution with correct answer
54
+ - `images_without_answer`: List of PIL Images containing only student solution
55
+ - `images_with_true_solution`: List of PIL Images containing task with true solution
56
+
57
+ ## Usage
58
+
59
+ ```python
60
+ from datasets import load_dataset
61
+
62
+ # Load the dataset
63
+ dataset = load_dataset('Karifannaa/EGE_Math_Solutions_Assessment_Benchmark')
64
+
65
+ # Access an example
66
+ example = dataset['train'][0]
67
+ print(f"Solution ID: {example['solution_id']}")
68
+ print(f"Task Type: {example['task_type']}")
69
+ print(f"Score: {example['score']}")
70
+
71
+ # View images (all images are PIL Image objects)
72
+ print(f"Images with answer: {len(example['images_with_answer'])}")
73
+ print(f"Images without answer: {len(example['images_without_answer'])}")
74
+ print(f"Images with true solution: {len(example['images_with_true_solution'])}")
75
+
76
+ # Display an image
77
+ if example['images_with_answer']:
78
+ img = example['images_with_answer'][0]
79
+ img.show() # This will work - images are properly embedded!
80
+ ```
81
+
82
+ ## Image Access
83
+
84
+ All images are stored as PIL Image objects and can be directly accessed:
85
+
86
+ ```python
87
+ # Get first example
88
+ example = dataset['train'][0]
89
+
90
+ # Access different types of images
91
+ student_solution_with_answer = example['images_with_answer'][0]
92
+ student_solution_without_answer = example['images_without_answer'][0]
93
+ true_solution = example['images_with_true_solution'][0]
94
+
95
+ # Images are PIL Image objects with standard methods
96
+ print(f"Image size: {student_solution_with_answer.size}")
97
+ print(f"Image mode: {student_solution_with_answer.mode}")
98
+
99
+ # Save image
100
+ student_solution_with_answer.save("solution.png")
101
+ ```
102
+
103
+ ## License
104
+
105
+ This dataset is provided for research and educational purposes.
106
+
107
+ ## Citation
108
+
109
+ If you use this dataset in your research, please cite:
110
+
111
+ ```bibtex
112
+ @dataset{ege_math_solutions_2024,
113
+ title={EGE Math Solutions Assessment Benchmark},
114
+ year={2024},
115
+ publisher={Hugging Face},
116
+ url={https://huggingface.co/datasets/Karifannaa/EGE_Math_Solutions_Assessment_Benchmark}
117
+ }
118
+ ```