test
Browse files- dataset_infos.json +80 -0
dataset_infos.json
ADDED
@@ -0,0 +1,80 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"customers": {
|
3 |
+
"description": "This is the customer dataset. It contains information about customer interactions.",
|
4 |
+
"citation": "@inproceedings{author2024dataset,\n title={A Dataset for Customer Interactions},\n author={Author, A.},\n booktitle={Conference on Data},\n year={2024}\n}",
|
5 |
+
"homepage": "https://example.com/customers",
|
6 |
+
"license": "MIT License",
|
7 |
+
"features": {
|
8 |
+
"customer_id": {
|
9 |
+
"dtype": "int32"
|
10 |
+
},
|
11 |
+
"purchase_amount": {
|
12 |
+
"dtype": "float32"
|
13 |
+
},
|
14 |
+
"age": {
|
15 |
+
"dtype": "int32"
|
16 |
+
}
|
17 |
+
},
|
18 |
+
"splits": {
|
19 |
+
"train": {
|
20 |
+
"num_examples": 70
|
21 |
+
},
|
22 |
+
"validation": {
|
23 |
+
"num_examples": 15
|
24 |
+
},
|
25 |
+
"test": {
|
26 |
+
"num_examples": 15
|
27 |
+
}
|
28 |
+
},
|
29 |
+
"download_size": 12345678,
|
30 |
+
"dataset_size": 23456789,
|
31 |
+
"task_categories": [
|
32 |
+
"tabular"
|
33 |
+
],
|
34 |
+
"task_ids": [
|
35 |
+
"regression"
|
36 |
+
},
|
37 |
+
"version": "1.0.0"
|
38 |
+
},
|
39 |
+
"products": {
|
40 |
+
"description": "This is the product dataset. It includes details about various products.",
|
41 |
+
"citation": "@inproceedings{author2024dataset,\n title={A Dataset for Product Analysis},\n author={Author, B.},\n booktitle={Product Analytics Conference},\n year={2024}\n}",
|
42 |
+
"homepage": "https://example.com/products",
|
43 |
+
"license": "Apache License 2.0",
|
44 |
+
"features": {
|
45 |
+
"product_id": {
|
46 |
+
"dtype": "int32"
|
47 |
+
},
|
48 |
+
"product_name": {
|
49 |
+
"dtype": "string"
|
50 |
+
},
|
51 |
+
"price": {
|
52 |
+
"dtype": "float32"
|
53 |
+
},
|
54 |
+
"in_stock": {
|
55 |
+
"dtype": "bool"
|
56 |
+
}
|
57 |
+
},
|
58 |
+
"splits": {
|
59 |
+
"train": {
|
60 |
+
"num_examples": 56
|
61 |
+
},
|
62 |
+
"validation": {
|
63 |
+
"num_examples": 12
|
64 |
+
},
|
65 |
+
"test": {
|
66 |
+
"num_examples": 12
|
67 |
+
}
|
68 |
+
},
|
69 |
+
"download_size": 7890123,
|
70 |
+
"dataset_size": 8901234,
|
71 |
+
"task_categories": [
|
72 |
+
"classification"
|
73 |
+
],
|
74 |
+
"task_ids": [
|
75 |
+
"binary_classification"
|
76 |
+
],
|
77 |
+
"version": "1.0.0"
|
78 |
+
}
|
79 |
+
}
|
80 |
+
|