iszhaoxin commited on
Commit
eee38f5
·
verified ·
1 Parent(s): 8202bd8

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
+ dataset_info:
22
+ config_name: customers
23
+ features:
24
+ - name: customer_id
25
+ dtype: int64
26
+ - name: name
27
+ dtype: string
28
+ - name: age
29
+ dtype: int64
30
+ splits:
31
+ - name: train
32
+ num_bytes: 2164
33
+ num_examples: 70
34
+ - name: validation
35
+ num_bytes: 465
36
+ num_examples: 15
37
+ - name: test
38
+ num_bytes: 463
39
+ num_examples: 15
40
+ download_size: 6030
41
+ dataset_size: 3092
42
+ configs:
43
+ - config_name: customers
44
+ data_files:
45
+ - split: train
46
+ path: customers/train-*
47
+ - split: validation
48
+ path: customers/validation-*
49
+ - split: test
50
+ path: customers/test-*
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:5594c80522f04f61c7e8fd71ec9592b60c51deef2a29dc340d9208bd979a6c4e
3
+ size 1750
customers/train-00000-of-00001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:879e13f830fe6a77be919acd4942c0048fbd87c0a4e52f2c88166ffba66a50af
3
+ size 2530
customers/validation-00000-of-00001.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a051dec440d31820adb12a02d3170380378626d9b7343766c3e9ce76c23c7f98
3
+ size 1750
dataset_infos.json CHANGED
@@ -1,61 +1,83 @@
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": "int64",
10
- "_type": "Value"
11
- },
12
- "name": {
13
- "dtype": "string",
14
- "_type": "Value"
15
- },
16
- "age": {
17
- "dtype": "int64",
18
- "_type": "Value"
19
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  },
21
- "download_size": 12345678,
22
- "dataset_size": 23456789,
23
- "task_categories": [
24
- "tabular"
25
- ],
26
- "task_ids": [
27
- "regression"
28
- ],
29
- "version": "1.0.0"
30
- },
31
- "products": {
32
- "description": "This is the product dataset. It includes details about various products.",
33
- "citation": "@inproceedings{author2024dataset,\n title={A Dataset for Product Analysis},\n author={Author, B.},\n booktitle={Product Analytics Conference},\n year={2024}\n}",
34
- "homepage": "https://example.com/products",
35
- "license": "Apache License 2.0",
36
- "features": {
37
- "product_id": {
38
- "dtype": "int64",
39
- "_type": "Value"
40
- },
41
- "name": {
42
- "dtype": "string",
43
- "_type": "Value"
44
- },
45
- "price": {
46
- "dtype": "double",
47
- "_type": "Value"
48
- }
49
- },
50
- "download_size": 7890123,
51
- "dataset_size": 8901234,
52
- "task_categories": [
53
- "classification"
54
- ],
55
- "task_ids": [
56
- "binary_classification"
57
- ],
58
- "version": "1.0.0"
59
- }
60
- }
61
-
 
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": "int64",
10
+ "_type": "Value"
11
+ },
12
+ "name": {
13
+ "dtype": "string",
14
+ "_type": "Value"
15
+ },
16
+ "age": {
17
+ "dtype": "int64",
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": 2164,
34
+ "num_examples": 70,
35
+ "dataset_name": null
36
+ },
37
+ "validation": {
38
+ "name": "validation",
39
+ "num_bytes": 465,
40
+ "num_examples": 15,
41
+ "dataset_name": null
42
+ },
43
+ "test": {
44
+ "name": "test",
45
+ "num_bytes": 463,
46
+ "num_examples": 15,
47
+ "dataset_name": null
48
+ }
49
+ },
50
+ "download_size": 6030,
51
+ "dataset_size": 3092,
52
+ "size_in_bytes": 9122
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": "int64",
62
+ "_type": "Value"
63
+ },
64
+ "name": {
65
+ "dtype": "string",
66
+ "_type": "Value"
67
+ },
68
+ "price": {
69
+ "dtype": "double",
70
+ "_type": "Value"
71
+ }
72
+ },
73
+ "download_size": 7890123,
74
+ "dataset_size": 8901234,
75
+ "task_categories": [
76
+ "classification"
77
+ ],
78
+ "task_ids": [
79
+ "binary_classification"
80
+ ],
81
+ "version": "1.0.0"
82
+ }
83
+ }