ajthor commited on
Commit
a6d8975
·
verified ·
1 Parent(s): 23dbe25

Update README.md

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