iszhaoxin commited on
Commit
d4adc87
·
verified ·
1 Parent(s): a718f43

Convert dataset to Parquet

Browse files

Convert dataset to Parquet.

README.md CHANGED
@@ -17,8 +17,37 @@ task_categories:
17
  - other
18
  task_ids:
19
  - other-other
20
- paperswithcode_id: null
21
  pretty_name: test
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
22
  ---
23
 
24
  # Dataset Card for test
 
17
  - other
18
  task_ids:
19
  - other-other
 
20
  pretty_name: test
21
+ configs:
22
+ - config_name: customers
23
+ data_files:
24
+ - split: train
25
+ path: customers/train-*
26
+ - split: validation
27
+ path: customers/validation-*
28
+ - split: test
29
+ path: customers/test-*
30
+ dataset_info:
31
+ config_name: customers
32
+ features:
33
+ - name: customer_id
34
+ dtype: int32
35
+ - name: name
36
+ dtype: string
37
+ - name: age
38
+ dtype: int32
39
+ splits:
40
+ - name: train
41
+ num_bytes: 1604
42
+ num_examples: 70
43
+ - name: validation
44
+ num_bytes: 345
45
+ num_examples: 15
46
+ - name: test
47
+ num_bytes: 343
48
+ num_examples: 15
49
+ download_size: 5771
50
+ dataset_size: 2292
51
  ---
52
 
53
  # Dataset Card for test
customers/test-00000-of-00001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9f7e5b6ddef226a3d843c0d2292b5c44a9c2a86795fc8ba6b261c2592e8538ae
3
+ size 1661
customers/train-00000-of-00001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ed9f45164d6dda3a9a056559bcd6e189a2dd500ab76cdb524ea2c05213c81a7d
3
+ size 2447
customers/validation-00000-of-00001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4527c1dfb6da1f46cb5dd04d30cf3f7531a7405c9de02f606afefb5140459489
3
+ size 1663
dataset_infos.json CHANGED
@@ -1,77 +1,91 @@
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
- "name": {
12
- "dtype": "string"
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
- "name": {
49
- "dtype": "string"
50
- },
51
- "price": {
52
- "dtype": "float32"
53
- }
54
- },
55
- "splits": {
56
- "train": {
57
- "num_examples": 56
58
- },
59
- "validation": {
60
- "num_examples": 12
61
- },
62
- "test": {
63
- "num_examples": 12
64
- }
65
- },
66
- "download_size": 7890123,
67
- "dataset_size": 8901234,
68
- "task_categories": [
69
- "classification"
70
- ],
71
- "task_ids": [
72
- "binary_classification"
73
- ],
74
- "version": "1.0.0"
75
- }
76
- }
77
-
 
1
  {
2
+ "customers": {
3
+ "description": "Description of your dataset goes here.\n",
4
+ "citation": "Put your dataset citation here.\n",
5
+ "homepage": "https://your-dataset-homepage.com",
6
+ "license": "License information goes here.",
7
+ "features": {
8
+ "customer_id": {
9
+ "dtype": "int32",
10
+ "_type": "Value"
11
+ },
12
+ "name": {
13
+ "dtype": "string",
14
+ "_type": "Value"
15
+ },
16
+ "age": {
17
+ "dtype": "int32",
18
+ "_type": "Value"
19
+ }
20
+ },
21
+ "builder_name": "test",
22
+ "dataset_name": "test",
23
+ "config_name": "customers",
24
+ "version": {
25
+ "version_str": "1.0.0",
26
+ "major": 1,
27
+ "minor": 0,
28
+ "patch": 0
29
+ },
30
+ "splits": {
31
+ "train": {
32
+ "name": "train",
33
+ "num_bytes": 1604,
34
+ "num_examples": 70,
35
+ "dataset_name": null
36
+ },
37
+ "validation": {
38
+ "name": "validation",
39
+ "num_bytes": 345,
40
+ "num_examples": 15,
41
+ "dataset_name": null
42
+ },
43
+ "test": {
44
+ "name": "test",
45
+ "num_bytes": 343,
46
+ "num_examples": 15,
47
+ "dataset_name": null
48
+ }
49
+ },
50
+ "download_size": 5771,
51
+ "dataset_size": 2292,
52
+ "size_in_bytes": 8063
53
  },
54
+ "products": {
55
+ "description": "This is the product dataset. It includes details about various products.",
56
+ "citation": "@inproceedings{author2024dataset,\n title={A Dataset for Product Analysis},\n author={Author, B.},\n booktitle={Product Analytics Conference},\n year={2024}\n}",
57
+ "homepage": "https://example.com/products",
58
+ "license": "Apache License 2.0",
59
+ "features": {
60
+ "product_id": {
61
+ "dtype": "int32"
62
+ },
63
+ "name": {
64
+ "dtype": "string"
65
+ },
66
+ "price": {
67
+ "dtype": "float32"
68
+ }
69
+ },
70
+ "splits": {
71
+ "train": {
72
+ "num_examples": 56
73
+ },
74
+ "validation": {
75
+ "num_examples": 12
76
+ },
77
+ "test": {
78
+ "num_examples": 12
79
+ }
80
+ },
81
+ "download_size": 7890123,
82
+ "dataset_size": 8901234,
83
+ "task_categories": [
84
+ "classification"
85
+ ],
86
+ "task_ids": [
87
+ "binary_classification"
88
+ ],
89
+ "version": "1.0.0"
90
+ }
91
+ }