File size: 1,282 Bytes
af2fabd 6e7f782 af2fabd 6e7f782 af2fabd d938e30 af2fabd 55998f8 d938e30 55998f8 6e7f782 d938e30 af2fabd 55998f8 af2fabd dc12e3b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 |
---
dataset_info:
features:
- name: X
sequence: float64
- name: y
sequence: float64
splits:
- name: train
num_bytes: 16080000
num_examples: 10000
- name: test
num_bytes: 1608000
num_examples: 1000
download_size: 22295560
dataset_size: 17688000
configs:
- config_name: default
data_files:
- split: train
path: data/train-*
- split: test
path: data/test-*
---
# Random Function Dataset
## Dataset Summary
The Random Function dataset is a collection of random functions. The dataset is
generated using Gaussian random fields.
Plot from the dataset:

## Dataset Structure
The dataset is structured as follows.
### Subsets
The dataset has one subset:
- `default`: the default dataset.
### Splits
The dataset is divided into two splits:
- `train`: the training split, consisting of 10,000 rows.
- `test`: the test split, consisting of 1,000 rows.
### Columns
Each row in the dataset consists of the following columns:
- `X`: the input value of the function f.
- `y`: the value of the function f at X.
### Data
The dataset contains the following data:
| Column | Shape | Type |
|---------|---------|---------|
| X | (100,) | float |
| y | (100,) | float |
|