Add 'products' config data files
Browse files- README.md +29 -1
- dataset_infos.json +35 -23
- products/test-00000-of-00001.parquet +3 -0
- products/train-00000-of-00001.parquet +3 -0
- products/validation-00000-of-00001.parquet +3 -0
README.md
CHANGED
@@ -19,7 +19,7 @@ task_ids:
|
|
19 |
- other-other
|
20 |
pretty_name: test
|
21 |
dataset_info:
|
22 |
-
|
23 |
features:
|
24 |
- name: customer_id
|
25 |
dtype: int32
|
@@ -39,6 +39,26 @@ dataset_info:
|
|
39 |
num_examples: 15
|
40 |
download_size: 5771
|
41 |
dataset_size: 2292
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
42 |
configs:
|
43 |
- config_name: customers
|
44 |
data_files:
|
@@ -48,6 +68,14 @@ configs:
|
|
48 |
path: customers/validation-*
|
49 |
- split: test
|
50 |
path: customers/test-*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
51 |
---
|
52 |
|
53 |
# Dataset Card for test
|
|
|
19 |
- other-other
|
20 |
pretty_name: test
|
21 |
dataset_info:
|
22 |
+
- config_name: customers
|
23 |
features:
|
24 |
- name: customer_id
|
25 |
dtype: int32
|
|
|
39 |
num_examples: 15
|
40 |
download_size: 5771
|
41 |
dataset_size: 2292
|
42 |
+
- config_name: products
|
43 |
+
features:
|
44 |
+
- name: product_id
|
45 |
+
dtype: int32
|
46 |
+
- name: name
|
47 |
+
dtype: string
|
48 |
+
- name: price
|
49 |
+
dtype: float32
|
50 |
+
splits:
|
51 |
+
- name: train
|
52 |
+
num_bytes: 1226
|
53 |
+
num_examples: 56
|
54 |
+
- name: validation
|
55 |
+
num_bytes: 263
|
56 |
+
num_examples: 12
|
57 |
+
- name: test
|
58 |
+
num_bytes: 262
|
59 |
+
num_examples: 12
|
60 |
+
download_size: 5619
|
61 |
+
dataset_size: 1751
|
62 |
configs:
|
63 |
- config_name: customers
|
64 |
data_files:
|
|
|
68 |
path: customers/validation-*
|
69 |
- split: test
|
70 |
path: customers/test-*
|
71 |
+
- config_name: products
|
72 |
+
data_files:
|
73 |
+
- split: train
|
74 |
+
path: products/train-*
|
75 |
+
- split: validation
|
76 |
+
path: products/validation-*
|
77 |
+
- split: test
|
78 |
+
path: products/test-*
|
79 |
---
|
80 |
|
81 |
# Dataset Card for test
|
dataset_infos.json
CHANGED
@@ -52,43 +52,55 @@
|
|
52 |
"size_in_bytes": 8063
|
53 |
},
|
54 |
"products": {
|
55 |
-
"description": "
|
56 |
-
"citation": "
|
57 |
-
"homepage": "https://
|
58 |
-
"license": "
|
59 |
"features": {
|
60 |
"product_id": {
|
61 |
-
"dtype": "int32"
|
|
|
62 |
},
|
63 |
-
"
|
64 |
-
"dtype": "string"
|
|
|
65 |
},
|
66 |
"price": {
|
67 |
-
"dtype": "float32"
|
68 |
-
|
69 |
-
"in_stock": {
|
70 |
-
"dtype": "bool"
|
71 |
}
|
72 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
73 |
"splits": {
|
74 |
"train": {
|
75 |
-
"
|
|
|
|
|
|
|
76 |
},
|
77 |
"validation": {
|
78 |
-
"
|
|
|
|
|
|
|
79 |
},
|
80 |
"test": {
|
81 |
-
"
|
|
|
|
|
|
|
82 |
}
|
83 |
},
|
84 |
-
"download_size":
|
85 |
-
"dataset_size":
|
86 |
-
"
|
87 |
-
"classification"
|
88 |
-
],
|
89 |
-
"task_ids": [
|
90 |
-
"binary_classification"
|
91 |
-
],
|
92 |
-
"version": "1.0.0"
|
93 |
}
|
94 |
}
|
|
|
52 |
"size_in_bytes": 8063
|
53 |
},
|
54 |
"products": {
|
55 |
+
"description": "Description of your dataset goes here.\n",
|
56 |
+
"citation": "Put your dataset citation here.\n",
|
57 |
+
"homepage": "https://your-dataset-homepage.com",
|
58 |
+
"license": "License information goes here.",
|
59 |
"features": {
|
60 |
"product_id": {
|
61 |
+
"dtype": "int32",
|
62 |
+
"_type": "Value"
|
63 |
},
|
64 |
+
"name": {
|
65 |
+
"dtype": "string",
|
66 |
+
"_type": "Value"
|
67 |
},
|
68 |
"price": {
|
69 |
+
"dtype": "float32",
|
70 |
+
"_type": "Value"
|
|
|
|
|
71 |
}
|
72 |
},
|
73 |
+
"builder_name": "test",
|
74 |
+
"dataset_name": "test",
|
75 |
+
"config_name": "products",
|
76 |
+
"version": {
|
77 |
+
"version_str": "1.0.0",
|
78 |
+
"major": 1,
|
79 |
+
"minor": 0,
|
80 |
+
"patch": 0
|
81 |
+
},
|
82 |
"splits": {
|
83 |
"train": {
|
84 |
+
"name": "train",
|
85 |
+
"num_bytes": 1226,
|
86 |
+
"num_examples": 56,
|
87 |
+
"dataset_name": null
|
88 |
},
|
89 |
"validation": {
|
90 |
+
"name": "validation",
|
91 |
+
"num_bytes": 263,
|
92 |
+
"num_examples": 12,
|
93 |
+
"dataset_name": null
|
94 |
},
|
95 |
"test": {
|
96 |
+
"name": "test",
|
97 |
+
"num_bytes": 262,
|
98 |
+
"num_examples": 12,
|
99 |
+
"dataset_name": null
|
100 |
}
|
101 |
},
|
102 |
+
"download_size": 5619,
|
103 |
+
"dataset_size": 1751,
|
104 |
+
"size_in_bytes": 7370
|
|
|
|
|
|
|
|
|
|
|
|
|
105 |
}
|
106 |
}
|
products/test-00000-of-00001.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:43e77ddd02b52925981bf735adab9c7aa5ed464cab70b391f8410a5ea5822851
|
3 |
+
size 1648
|
products/train-00000-of-00001.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8450ecc2b1ac76ebf2568986d70fe2093f03448491535b037fff5361184c324d
|
3 |
+
size 2320
|
products/validation-00000-of-00001.parquet
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0203017853134ebd6c91957eeea281b82708ec7b2cd419142842af427b245c04
|
3 |
+
size 1651
|