1313# limitations under the License.
1414# ============================================================================
1515"""
16- This data is built based on the Ta Feng Grocery Dataset that contains
17- a Chinese grocery store transaction data from November 2000 to February 2001.
18- Accessed at https://www.kaggle.com/datasets/chiranjivdas09/ta-feng-grocery-dataset
16+ Yoochoose Dataset is originally from the RecSys Challenge 2015.
1917"""
2018
2119from typing import List
@@ -39,7 +37,7 @@ def load_buy(fmt="SITJson", reader: Reader = None) -> List:
3937 Location information is stored in `json` format
4038 """
4139 fpath = cache (
42- url = "https://static.preferred.ai/datasets/yoochoose/buy.zip" ,
40+ url = "https://static.preferred.ai/cornac/ datasets/yoochoose/buy.zip" ,
4341 unzip = True ,
4442 relative_path = "yoochoose/buy.txt" ,
4543 )
@@ -62,7 +60,7 @@ def load_click(fmt="SITJson", reader: Reader = None) -> List:
6260 Location information is stored in `json` format
6361 """
6462 fpath = cache (
65- url = "https://static.preferred.ai/datasets/yoochoose/click.zip" ,
63+ url = "https://static.preferred.ai/cornac/ datasets/yoochoose/click.zip" ,
6664 unzip = True ,
6765 relative_path = "yoochoose/click.txt" ,
6866 )
@@ -85,7 +83,7 @@ def load_test(fmt="SITJson", reader: Reader = None) -> List:
8583 Location information is stored in `json` format
8684 """
8785 fpath = cache (
88- url = "https://static.preferred.ai/datasets/yoochoose/test.zip" ,
86+ url = "https://static.preferred.ai/cornac/ datasets/yoochoose/test.zip" ,
8987 unzip = True ,
9088 relative_path = "yoochoose/test.txt" ,
9189 )
0 commit comments