ajthor commited on
Commit
dc12e3b
1 Parent(s): ba1c64d

Update README.md

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