alexandonian commited on
Commit
8cddfae
·
verified ·
1 Parent(s): dd49053

Upload dataset

Browse files
Files changed (1) hide show
  1. README.md +75 -0
README.md CHANGED
@@ -1,3 +1,78 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  # Project Euler Problems Dataset
2
 
3
  A comprehensive collection of mathematical and programming challenges from Project Euler (projecteuler.net), organized for machine learning and educational purposes.
 
1
+ ---
2
+ configs:
3
+ - config_name: default
4
+ data_files:
5
+ - split: full
6
+ path: data/full-*
7
+ - split: train
8
+ path: data/train-*
9
+ - split: test
10
+ path: data/test-*
11
+ - split: easy
12
+ path: data/easy-*
13
+ - split: medium
14
+ path: data/medium-*
15
+ - split: hard
16
+ path: data/hard-*
17
+ - split: early_problems
18
+ path: data/early_problems-*
19
+ - split: later_problems
20
+ path: data/later_problems-*
21
+ - split: sample
22
+ path: data/sample-*
23
+ dataset_info:
24
+ features:
25
+ - name: id
26
+ dtype: int32
27
+ - name: title
28
+ dtype: string
29
+ - name: problem
30
+ dtype: string
31
+ - name: question_latex
32
+ dtype: string
33
+ - name: question_html
34
+ dtype: string
35
+ - name: numerical_answer
36
+ dtype: string
37
+ - name: pub_date
38
+ dtype: string
39
+ - name: solved_by
40
+ dtype: string
41
+ - name: diff_rate
42
+ dtype: string
43
+ - name: difficulty
44
+ dtype: string
45
+ splits:
46
+ - name: full
47
+ num_bytes: 2322335.230603448
48
+ num_examples: 918
49
+ - name: train
50
+ num_bytes: 1856856.2737068965
51
+ num_examples: 734
52
+ - name: test
53
+ num_bytes: 465478.9568965517
54
+ num_examples: 184
55
+ - name: easy
56
+ num_bytes: 700748.2122844828
57
+ num_examples: 277
58
+ - name: medium
59
+ num_bytes: 850005.051724138
60
+ num_examples: 336
61
+ - name: hard
62
+ num_bytes: 771581.9665948276
63
+ num_examples: 305
64
+ - name: early_problems
65
+ num_bytes: 1173816.5
66
+ num_examples: 464
67
+ - name: later_problems
68
+ num_bytes: 1148518.7306034483
69
+ num_examples: 454
70
+ - name: sample
71
+ num_bytes: 126488.84698275862
72
+ num_examples: 50
73
+ download_size: 5161799
74
+ dataset_size: 9415829.769396551
75
+ ---
76
  # Project Euler Problems Dataset
77
 
78
  A comprehensive collection of mathematical and programming challenges from Project Euler (projecteuler.net), organized for machine learning and educational purposes.