ajthor commited on
Commit
2a9d994
·
verified ·
1 Parent(s): f7959bb

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +45 -0
README.md CHANGED
@@ -24,3 +24,48 @@ configs:
24
  - split: test
25
  path: data/test-*
26
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24
  - split: test
25
  path: data/test-*
26
  ---
27
+
28
+ # Polynomial Dataset
29
+
30
+ ## Dataset Summary
31
+
32
+ The Polynomial dataset is a collection of polynomial functions.
33
+
34
+ Plot from the dataset:
35
+
36
+ ![Polynomial Dataset](plot.png)
37
+
38
+ ## Dataset Structure
39
+
40
+ The dataset is structured as follows.
41
+
42
+ ### Subsets
43
+
44
+ The dataset has one subset:
45
+
46
+ - `default`: the default dataset.
47
+
48
+ ### Splits
49
+
50
+ The dataset is divided into two splits:
51
+
52
+ - `train`: the training split, consisting of 10,000 rows.
53
+ - `test`: the test split, consisting of 1,000 rows.
54
+
55
+ ### Columns
56
+
57
+ Each row in the dataset consists of the following columns:
58
+
59
+ - `X`: the input value of the function f.
60
+ - `y`: the value of the function f at X.
61
+ - `coefficients`: the coefficients of the polynomial function f.
62
+
63
+ ### Data
64
+
65
+ The dataset contains the following data:
66
+
67
+ | Column | Shape | Type | Range |
68
+ |--------------|---------|---------|---------|
69
+ | X | (100,) | float | |
70
+ | y | (100,) | float | |
71
+ | coefficients | (3,) | float | [-1, 1] |