Upload README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# KKBox_x1
|
| 2 |
+
|
| 3 |
+
+ **Dataset description:**
|
| 4 |
+
|
| 5 |
+
KKBox is a challenge dataset for music recommendation at WSDM 2018. The data consist of user-song pairs in a given time period, with a total of 19 user features (e.g., city, gender) and song features (e.g., language, genre, artist). We randomly split the data into 8:1:1 as the training set, validation set, and test set, respectively. In this setting, for all categorical fields, we replace infrequent features with a default ``<OOV>`` token by setting the threshold min_category_count=10.
|
| 6 |
+
|
| 7 |
+
The dataset statistics are summarized as follows:
|
| 8 |
+
|
| 9 |
+
| Dataset Split | Total | #Train | #Validation | #Test |
|
| 10 |
+
| :--------: | :-----: |:-----: | :----------: | :----: |
|
| 11 |
+
| KKBox_x1 | 7,377,418 | 5,901,932 | 737,743 | 737,743 |
|
| 12 |
+
|
| 13 |
+
+ **Source:** https://www.kaggle.com/c/kkbox-music-recommendation-challenge
|
| 14 |
+
+ **Download:** https://huggingface.co/datasets/reczoo/KKBox_x1/tree/main
|
| 15 |
+
+ **RecZoo Datasets:** https://github.com/reczoo/Datasets
|
| 16 |
+
|
| 17 |
+
+ **Used by papers:**
|
| 18 |
+
- Jieming Zhu, Quanyu Dai, Liangcai Su, Rong Ma, Jinyang Liu, Guohao Cai, Xi Xiao, Rui Zhang. [BARS: Towards Open Benchmarking for Recommender Systems](https://arxiv.org/abs/2205.09626). In SIGIR 2022.
|
| 19 |
+
|
| 20 |
+
+ **Check the md5sum for data integrity:**
|
| 21 |
+
```bash
|
| 22 |
+
$ md5sum train.csv valid.csv test.csv
|
| 23 |
+
195b1ae8fc2d9267d7c8656c07ea1304 train.csv
|
| 24 |
+
398e97ac139611a09bd61a58e4240a3e valid.csv
|
| 25 |
+
8c5f7add05a6f5258b6b3bcc00ba640b test.csv
|
| 26 |
+
```
|