File size: 1,902 Bytes
a34da83 8f897d4 1e1eb30 8f897d4 1e1eb30 8f897d4 1e1eb30 a34da83 |
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 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 |
---
annotations_creators:
- no-annotation
language_creators:
- found
language:
- en
license:
- unknown
multilinguality:
- monolingual
size_categories:
- n<1K
source_datasets:
- original
task_categories:
- other
task_ids:
- other-other
pretty_name: test
dataset_info:
- config_name: customers
features:
- name: customer_id
dtype: string
- name: name
dtype: string
- name: age
dtype: int32
splits:
- name: train
num_bytes: 1738
num_examples: 70
- name: validation
num_bytes: 375
num_examples: 15
- name: test
num_bytes: 371
num_examples: 15
download_size: 5698
dataset_size: 2484
- config_name: products
features:
- name: product_id
dtype: float32
- name: name
dtype: string
- name: price
dtype: float32
splits:
- name: train
num_bytes: 1226
num_examples: 56
- name: validation
num_bytes: 263
num_examples: 12
- name: test
num_bytes: 262
num_examples: 12
download_size: 5589
dataset_size: 1751
configs:
- config_name: customers
data_files:
- split: train
path: customers/train-*
- split: validation
path: customers/validation-*
- split: test
path: customers/test-*
- config_name: products
data_files:
- split: train
path: products/train-*
- split: validation
path: products/validation-*
- split: test
path: products/test-*
---
# Dataset Card for test
This dataset contains customer and product information.
## Dataset Structure
### Data Splits
The dataset contains the following subsets, each split into train/validation/test sets:
#### customers
- Train: 70 examples
- Validation: 15 examples
- Test: 15 examples
#### products
- Train: 56 examples
- Validation: 12 examples
- Test: 12 examples
## Data Fields
### customers
- customer_id: int64
- name: object
- age: int64
### products
- product_id: int64
- name: object
- price: float64
|