oyku-tugana commited on
Commit
d3b96c7
·
verified ·
1 Parent(s): d7c6bfb

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +75 -101
README.md CHANGED
@@ -1,104 +1,78 @@
1
  ---
2
- dataset_info:
3
- - config_name: cold_start
4
- features:
5
- - name: user_id
6
- dtype: string
7
- - name: parent_asin
8
- dtype: string
9
- - name: rating
10
- dtype: float64
11
- - name: timestamp
12
- dtype: int64
13
- - name: helpful_vote
14
- dtype: int64
15
- - name: verified_purchase
16
- dtype: bool
17
- - name: review_title
18
- dtype: string
19
- - name: review_text
20
- dtype: string
21
- - name: date
22
- dtype: timestamp[ns]
23
- splits:
24
- - name: train
25
- num_bytes: 2299352
26
- num_examples: 7753
27
- download_size: 1502832
28
- dataset_size: 2299352
29
- - config_name: interactions
30
- features:
31
- - name: user_id
32
- dtype: string
33
- - name: parent_asin
34
- dtype: string
35
- - name: rating
36
- dtype: float64
37
- - name: timestamp
38
- dtype: int64
39
- - name: helpful_vote
40
- dtype: int64
41
- - name: verified_purchase
42
- dtype: bool
43
- - name: review_title
44
- dtype: string
45
- - name: review_text
46
- dtype: string
47
- - name: date
48
- dtype: timestamp[ns]
49
- splits:
50
- - name: train
51
- num_bytes: 184914008
52
- num_examples: 473647
53
- download_size: 105275880
54
- dataset_size: 184914008
55
- - config_name: items
56
- features:
57
- - name: parent_asin
58
- dtype: string
59
- - name: title
60
- dtype: string
61
- - name: description
62
- dtype: string
63
- - name: features
64
- dtype: string
65
- - name: main_category
66
- dtype: string
67
- - name: categories
68
- dtype: string
69
- - name: store
70
- dtype: string
71
- - name: price
72
- dtype: float64
73
- - name: average_rating
74
- dtype: float64
75
- - name: rating_number
76
- dtype: int64
77
- - name: image_url
78
- dtype: string
79
- - name: has_image
80
- dtype: bool
81
- - name: has_description
82
- dtype: bool
83
- - name: has_price
84
- dtype: bool
85
- splits:
86
- - name: train
87
- num_bytes: 31153350
88
- num_examples: 23158
89
- download_size: 17103989
90
- dataset_size: 31153350
91
  configs:
92
- - config_name: cold_start
93
- data_files:
94
- - split: train
95
- path: cold_start/train-*
96
- - config_name: interactions
97
- data_files:
98
- - split: train
99
- path: interactions/train-*
100
- - config_name: items
101
- data_files:
102
- - split: train
103
- path: items/train-*
104
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ license: mit
3
+ task_categories:
4
+ - text-classification
5
+ - text-retrieval
6
+ language:
7
+ - en
8
+ tags:
9
+ - recommendation-system
10
+ - collaborative-filtering
11
+ - amazon-reviews
12
+ - musical-instruments
13
+ size_categories:
14
+ - 100K<n<1M
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
15
  configs:
16
+ - config_name: interactions
17
+ data_files:
18
+ - split: train
19
+ path: interactions/train-*
20
+ - config_name: items
21
+ data_files:
22
+ - split: train
23
+ path: items/train-*
24
+ - config_name: cold_start
25
+ data_files:
26
+ - split: train
27
+ path: cold_start/train-*
28
  ---
29
+
30
+ # Amazon Musical Instruments — 5-Core Sampled Dataset (2018-2023)
31
+
32
+ Sampled subset of [Amazon Reviews 2023](https://huggingface.co/datasets/McAuley-Lab/Amazon-Reviews-2023) Musical Instruments category, created for a Data Mining course recommendation system project.
33
+
34
+ ## Sampling Strategy
35
+
36
+ 1. **Time filter:** 2014-01-01 to 2023-09-12
37
+ 2. **Iterative 5-core filtering:** Both users and items have at least 5 interactions (iteratively until stable)
38
+ 3. **Cold-start test set:** 10000 users with 1-2 reviews held out for cold-start evaluation
39
+ 4. **Random seed:** 42
40
+
41
+ ## Configs
42
+
43
+ This dataset has **three configs**. Load each one separately:
44
+
45
+ ```python
46
+ from datasets import load_dataset
47
+
48
+ interactions = load_dataset("oyku-tugana/amazon-musical-instruments-2014-2023-5core", "interactions", split="train")
49
+ items = load_dataset("oyku-tugana/amazon-musical-instruments-2014-2023-5core", "items", split="train")
50
+ cold_start = load_dataset("oyku-tugana/amazon-musical-instruments-2014-2023-5core", "cold_start", split="train")
51
+ ```
52
+
53
+ ## Statistics
54
+
55
+ | Field | Value |
56
+ |---|---|
57
+ | Users (main) | 53,127 |
58
+ | Items (main) | 23,158 |
59
+ | Interactions (main) | 473,647 |
60
+ | Sparsity | 0.999615 |
61
+ | Mean rating | 4.445 |
62
+ | Items w/ image | 100.0% |
63
+ | Items w/ description| 69.3% |
64
+ | Items w/ price | 69.2% |
65
+ | Cold-start users | 6,904 |
66
+
67
+ ## Schema
68
+
69
+ ### interactions / cold_start
70
+ - `user_id`, `parent_asin`, `rating`, `timestamp` (ms), `date`
71
+ - `helpful_vote`, `verified_purchase`
72
+ - `review_title`, `review_text`
73
+
74
+ ### items
75
+ - `parent_asin`, `title`, `description`, `features`
76
+ - `main_category`, `categories`, `store`
77
+ - `price` (nullable), `average_rating`, `rating_number`
78
+ - `image_url` (nullable), `has_image`, `has_description`, `has_price`