File size: 1,431 Bytes
c0eec66 6f5b782 c0eec66 6f5b782 c0eec66 6f5b782 c0eec66 f6b4b28 c0eec66 6f5b782 f6b4b28 6f5b782 f6b4b28 c0eec66 6f5b782 c0eec66 2a9d994 |
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 70 71 72 |
---
dataset_info:
features:
- name: X
sequence: float32
- name: coefficients
sequence: float32
- name: y
sequence: float32
splits:
- name: train
num_bytes: 8280000
num_examples: 10000
- name: test
num_bytes: 828000
num_examples: 1000
download_size: 13710543
dataset_size: 9108000
configs:
- config_name: default
data_files:
- split: train
path: data/train-*
- split: test
path: data/test-*
---
# Polynomial Dataset
## Dataset Summary
The Polynomial dataset is a collection of polynomial functions.
Plot from the dataset:
![Polynomial Dataset](plot.png)
## 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.
- `coefficients`: the coefficients of the polynomial function f.
### Data
The dataset contains the following data:
| Column | Shape | Type | Range |
|--------------|---------|---------|---------|
| X | (100,) | float | |
| y | (100,) | float | |
| coefficients | (3,) | float | [-1, 1] |
|