ajthor commited on
Commit
6a08383
·
verified ·
1 Parent(s): 69496db

Update README.md

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