ajthor commited on
Commit
ebe1285
·
verified ·
1 Parent(s): 934fab6

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +48 -0
README.md CHANGED
@@ -56,3 +56,51 @@ configs:
56
  - split: test
57
  path: data/test-*
58
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
56
  - split: test
57
  path: data/test-*
58
  ---
59
+
60
+ # Antiderivative Polynomial Dataset
61
+
62
+ ## Dataset Summary
63
+
64
+ The Antiderivative Polynomial dataset is a collection of polynomial functions and their antiderivatives. The dataset is generated using polynomial functions and their antiderivatives.
65
+
66
+ Plot from the dataset:
67
+
68
+ ![Antiderivative Polynomial Dataset](plot.png)
69
+
70
+ ## Dataset Structure
71
+
72
+ The dataset is structured as follows.
73
+
74
+ ### Subsets
75
+
76
+ The dataset is divided into two subsets:
77
+
78
+ - `default`: the default dataset.
79
+ - `aligned`: the `X` values are aligned for all functions.
80
+
81
+ ### Splits
82
+
83
+ The dataset is divided into two splits:
84
+
85
+ - `train`: the training split, consisting of 10,000 rows.
86
+ - `test`: the test split, consisting of 1,000 rows.
87
+
88
+ ### Columns
89
+
90
+ Each row in the dataset consists of the following columns:
91
+
92
+ - `X`: the input value of the function f.
93
+ - `f`: the value of the function f at X.
94
+ - `Y`: the input value of the antiderivative Tf.
95
+ - `Tf`: the value of the antiderivative Tf at Y.
96
+
97
+ ### Data
98
+
99
+ The dataset contains the following data:
100
+
101
+ | Column | Shape | Type |
102
+ |---------|---------|---------|
103
+ | X | (100,) | float |
104
+ | f | (100,) | float |
105
+ | Y | (100,) | float |
106
+ | Tf | (100,) | float |