diff --git a/.gitattributes b/.gitattributes new file mode 100755 index 0000000000000000000000000000000000000000..ca5fc1c222ab867d149b69d5a5d8978beb96b55e --- /dev/null +++ b/.gitattributes @@ -0,0 +1,60 @@ +*.7z filter=lfs diff=lfs merge=lfs -text +*.arrow filter=lfs diff=lfs merge=lfs -text +*.bin filter=lfs diff=lfs merge=lfs -text +*.bz2 filter=lfs diff=lfs merge=lfs -text +*.ckpt filter=lfs diff=lfs merge=lfs -text +*.ftz filter=lfs diff=lfs merge=lfs -text +*.gz filter=lfs diff=lfs merge=lfs -text +*.h5 filter=lfs diff=lfs merge=lfs -text +*.joblib filter=lfs diff=lfs merge=lfs -text +*.lfs.* filter=lfs diff=lfs merge=lfs -text +*.lz4 filter=lfs diff=lfs merge=lfs -text +*.mlmodel filter=lfs diff=lfs merge=lfs -text +*.model filter=lfs diff=lfs merge=lfs -text +*.msgpack filter=lfs diff=lfs merge=lfs -text +*.npy filter=lfs diff=lfs merge=lfs -text +*.npz filter=lfs diff=lfs merge=lfs -text +*.onnx filter=lfs diff=lfs merge=lfs -text +*.ot filter=lfs diff=lfs merge=lfs -text +*.parquet filter=lfs diff=lfs merge=lfs -text +*.pb filter=lfs diff=lfs merge=lfs -text +*.pickle filter=lfs diff=lfs merge=lfs -text +*.pkl filter=lfs diff=lfs merge=lfs -text +*.pt filter=lfs diff=lfs merge=lfs -text +*.pth filter=lfs diff=lfs merge=lfs -text +*.rar filter=lfs diff=lfs merge=lfs -text +*.safetensors filter=lfs diff=lfs merge=lfs -text +saved_model/**/* filter=lfs diff=lfs merge=lfs -text +*.tar.* filter=lfs diff=lfs merge=lfs -text +*.tar filter=lfs diff=lfs merge=lfs -text +*.tflite filter=lfs diff=lfs merge=lfs -text +*.tgz filter=lfs diff=lfs merge=lfs -text +*.wasm filter=lfs diff=lfs merge=lfs -text +*.xz filter=lfs diff=lfs merge=lfs -text +*.zip filter=lfs diff=lfs merge=lfs -text +*.zst filter=lfs diff=lfs merge=lfs -text +*tfevents* filter=lfs diff=lfs merge=lfs -text +# Audio files - uncompressed +*.pcm filter=lfs diff=lfs merge=lfs -text +*.sam filter=lfs diff=lfs merge=lfs -text +*.raw filter=lfs diff=lfs merge=lfs -text +# Audio files - compressed +*.aac filter=lfs diff=lfs merge=lfs -text +*.flac filter=lfs diff=lfs merge=lfs -text +*.mp3 filter=lfs diff=lfs merge=lfs -text +*.ogg filter=lfs diff=lfs merge=lfs -text +*.wav filter=lfs diff=lfs merge=lfs -text +# Image files - uncompressed +*.bmp filter=lfs diff=lfs merge=lfs -text +*.gif filter=lfs diff=lfs merge=lfs -text +*.png filter=lfs diff=lfs merge=lfs -text +*.tiff filter=lfs diff=lfs merge=lfs -text +# Image files - compressed +*.jpg filter=lfs diff=lfs merge=lfs -text +*.jpeg filter=lfs diff=lfs merge=lfs -text +*.webp filter=lfs diff=lfs merge=lfs -text +raw/review_categories/*.jsonl filter=lfs diff=lfs merge=lfs -text +raw/meta_categories/*.jsonl filter=lfs diff=lfs merge=lfs -text +group_by_user/*.jsonl filter=lfs diff=lfs merge=lfs -text +benchmark/*/*/*.csv filter=lfs diff=lfs merge=lfs -text +asin2category.json filter=lfs diff=lfs merge=lfs -text diff --git a/Amazon-Reviews-2023.py b/Amazon-Reviews-2023.py new file mode 100644 index 0000000000000000000000000000000000000000..bfab97121711c51da6d5a018260f48b1400e42ab --- /dev/null +++ b/Amazon-Reviews-2023.py @@ -0,0 +1,557 @@ +import json + +import datasets + + +_AMAZON_REVIEW_2023_DESCRIPTION = """\ +Amazon Review 2023 is an updated version of the Amazon Review 2018 dataset. +This dataset mainly includes reviews (ratings, text) and item metadata (desc- +riptions, category information, price, brand, and images). Compared to the pre- +vious versions, the 2023 version features larger size, newer reviews (up to Sep +2023), richer and cleaner meta data, and finer-grained timestamps (from day to +milli-second). + +""" + + +class RawMetaAmazonReview2023Config(datasets.BuilderConfig): + def __init__(self, **kwargs): + super(RawMetaAmazonReview2023Config, self).__init__(**kwargs) + + self.suffix = 'jsonl' + self.domain = self.name[len(f'raw_meta_'):] + self.description = f'This is a subset for items in domain: {self.domain}.' + self.data_dir = f'raw/meta_categories/meta_{self.domain}.jsonl' + + +class RawReviewAmazonReview2023Config(datasets.BuilderConfig): + def __init__(self, **kwargs): + super(RawReviewAmazonReview2023Config, self).__init__(**kwargs) + + self.suffix = 'jsonl' + self.domain = self.name[len(f'raw_review_'):] + self.description = f'This is a subset for reviews in domain: {self.domain}.' + self.data_dir = f'raw/review_categories/{self.domain}.jsonl' + + +class RatingOnlyAmazonReview2023Config(datasets.BuilderConfig): + def __init__(self, **kwargs): + super(RatingOnlyAmazonReview2023Config, self).__init__(**kwargs) + + self.suffix = 'csv' + self.kcore = self.name[:len('0core')] + self.domain = self.name[len(f'0core_rating_only_'):] + self.description = \ + f'This is the preprocessed file that only contains in domain: {self.domain}.\n' \ + f'The preprocessing includes {self.kcore} filtering and interaction deduplication' + self.data_dir = f'benchmark/{self.kcore}/rating_only/{self.domain}.csv' + + +class BenchmarkAmazonReview2023Config(datasets.BuilderConfig): + def __init__(self, **kwargs): + super(BenchmarkAmazonReview2023Config, self).__init__(**kwargs) + + self.suffix = 'csv' + self.split = None + for potential_split in ['last_out_w_his', 'timestamp_w_his', 'last_out', 'timestamp']: + if potential_split in self.name: + self.split = potential_split + break + if self.split is None: + ValueError(f'Cannot find valid split for {self.name}') + self.kcore = self.name[:len('0core')] + self.domain = self.name[len(f'0core_{self.split}_'):] + self.description = \ + f'This is the preprocessed benchmark in domain: {self.domain}.' \ + f'The preprocessing includes {self.kcore} filtering, interaction deduplication, ' \ + f'as well as split by {self.split}.' + self.data_dir = { + 'train': f'benchmark/{self.kcore}/{self.split}/{self.domain}.train.csv', + 'valid': f'benchmark/{self.kcore}/{self.split}/{self.domain}.valid.csv', + 'test': f'benchmark/{self.kcore}/{self.split}/{self.domain}.test.csv' + } + + +class AmazonReview2023(datasets.GeneratorBasedBuilder): + BUILDER_CONFIGS = [ + # Raw item metadata + RawMetaAmazonReview2023Config(name='raw_meta_All_Beauty'), + RawMetaAmazonReview2023Config(name='raw_meta_Toys_and_Games'), + RawMetaAmazonReview2023Config(name='raw_meta_Cell_Phones_and_Accessories'), + RawMetaAmazonReview2023Config(name='raw_meta_Industrial_and_Scientific'), + RawMetaAmazonReview2023Config(name='raw_meta_Gift_Cards'), + RawMetaAmazonReview2023Config(name='raw_meta_Musical_Instruments'), + RawMetaAmazonReview2023Config(name='raw_meta_Electronics'), + RawMetaAmazonReview2023Config(name='raw_meta_Handmade_Products'), + RawMetaAmazonReview2023Config(name='raw_meta_Arts_Crafts_and_Sewing'), + RawMetaAmazonReview2023Config(name='raw_meta_Baby_Products'), + RawMetaAmazonReview2023Config(name='raw_meta_Health_and_Household'), + RawMetaAmazonReview2023Config(name='raw_meta_Office_Products'), + RawMetaAmazonReview2023Config(name='raw_meta_Digital_Music'), + RawMetaAmazonReview2023Config(name='raw_meta_Grocery_and_Gourmet_Food'), + RawMetaAmazonReview2023Config(name='raw_meta_Sports_and_Outdoors'), + RawMetaAmazonReview2023Config(name='raw_meta_Home_and_Kitchen'), + RawMetaAmazonReview2023Config(name='raw_meta_Subscription_Boxes'), + RawMetaAmazonReview2023Config(name='raw_meta_Tools_and_Home_Improvement'), + RawMetaAmazonReview2023Config(name='raw_meta_Pet_Supplies'), + RawMetaAmazonReview2023Config(name='raw_meta_Video_Games'), + RawMetaAmazonReview2023Config(name='raw_meta_Kindle_Store'), + RawMetaAmazonReview2023Config(name='raw_meta_Clothing_Shoes_and_Jewelry'), + RawMetaAmazonReview2023Config(name='raw_meta_Patio_Lawn_and_Garden'), + RawMetaAmazonReview2023Config(name='raw_meta_Unknown'), + RawMetaAmazonReview2023Config(name='raw_meta_Books'), + RawMetaAmazonReview2023Config(name='raw_meta_Automotive'), + RawMetaAmazonReview2023Config(name='raw_meta_CDs_and_Vinyl'), + RawMetaAmazonReview2023Config(name='raw_meta_Beauty_and_Personal_Care'), + RawMetaAmazonReview2023Config(name='raw_meta_Amazon_Fashion'), + RawMetaAmazonReview2023Config(name='raw_meta_Magazine_Subscriptions'), + RawMetaAmazonReview2023Config(name='raw_meta_Software'), + RawMetaAmazonReview2023Config(name='raw_meta_Health_and_Personal_Care'), + RawMetaAmazonReview2023Config(name='raw_meta_Appliances'), + RawMetaAmazonReview2023Config(name='raw_meta_Movies_and_TV'), + # Raw review + RawReviewAmazonReview2023Config(name='raw_review_All_Beauty'), + RawReviewAmazonReview2023Config(name='raw_review_Toys_and_Games'), + RawReviewAmazonReview2023Config(name='raw_review_Cell_Phones_and_Accessories'), + RawReviewAmazonReview2023Config(name='raw_review_Industrial_and_Scientific'), + RawReviewAmazonReview2023Config(name='raw_review_Gift_Cards'), + RawReviewAmazonReview2023Config(name='raw_review_Musical_Instruments'), + RawReviewAmazonReview2023Config(name='raw_review_Electronics'), + RawReviewAmazonReview2023Config(name='raw_review_Handmade_Products'), + RawReviewAmazonReview2023Config(name='raw_review_Arts_Crafts_and_Sewing'), + RawReviewAmazonReview2023Config(name='raw_review_Baby_Products'), + RawReviewAmazonReview2023Config(name='raw_review_Health_and_Household'), + RawReviewAmazonReview2023Config(name='raw_review_Office_Products'), + RawReviewAmazonReview2023Config(name='raw_review_Digital_Music'), + RawReviewAmazonReview2023Config(name='raw_review_Grocery_and_Gourmet_Food'), + RawReviewAmazonReview2023Config(name='raw_review_Sports_and_Outdoors'), + RawReviewAmazonReview2023Config(name='raw_review_Home_and_Kitchen'), + RawReviewAmazonReview2023Config(name='raw_review_Subscription_Boxes'), + RawReviewAmazonReview2023Config(name='raw_review_Tools_and_Home_Improvement'), + RawReviewAmazonReview2023Config(name='raw_review_Pet_Supplies'), + RawReviewAmazonReview2023Config(name='raw_review_Video_Games'), + RawReviewAmazonReview2023Config(name='raw_review_Kindle_Store'), + RawReviewAmazonReview2023Config(name='raw_review_Clothing_Shoes_and_Jewelry'), + RawReviewAmazonReview2023Config(name='raw_review_Patio_Lawn_and_Garden'), + RawReviewAmazonReview2023Config(name='raw_review_Unknown'), + RawReviewAmazonReview2023Config(name='raw_review_Books'), + RawReviewAmazonReview2023Config(name='raw_review_Automotive'), + RawReviewAmazonReview2023Config(name='raw_review_CDs_and_Vinyl'), + RawReviewAmazonReview2023Config(name='raw_review_Beauty_and_Personal_Care'), + RawReviewAmazonReview2023Config(name='raw_review_Amazon_Fashion'), + RawReviewAmazonReview2023Config(name='raw_review_Magazine_Subscriptions'), + RawReviewAmazonReview2023Config(name='raw_review_Software'), + RawReviewAmazonReview2023Config(name='raw_review_Health_and_Personal_Care'), + RawReviewAmazonReview2023Config(name='raw_review_Appliances'), + RawReviewAmazonReview2023Config(name='raw_review_Movies_and_TV'), + # Rating only - 0core + RatingOnlyAmazonReview2023Config(name='0core_rating_only_All_Beauty'), + RatingOnlyAmazonReview2023Config(name='0core_rating_only_Toys_and_Games'), + RatingOnlyAmazonReview2023Config(name='0core_rating_only_Cell_Phones_and_Accessories'), + RatingOnlyAmazonReview2023Config(name='0core_rating_only_Industrial_and_Scientific'), + RatingOnlyAmazonReview2023Config(name='0core_rating_only_Gift_Cards'), + RatingOnlyAmazonReview2023Config(name='0core_rating_only_Musical_Instruments'), + RatingOnlyAmazonReview2023Config(name='0core_rating_only_Electronics'), + RatingOnlyAmazonReview2023Config(name='0core_rating_only_Handmade_Products'), + RatingOnlyAmazonReview2023Config(name='0core_rating_only_Arts_Crafts_and_Sewing'), + RatingOnlyAmazonReview2023Config(name='0core_rating_only_Baby_Products'), + RatingOnlyAmazonReview2023Config(name='0core_rating_only_Health_and_Household'), + RatingOnlyAmazonReview2023Config(name='0core_rating_only_Office_Products'), + RatingOnlyAmazonReview2023Config(name='0core_rating_only_Digital_Music'), + RatingOnlyAmazonReview2023Config(name='0core_rating_only_Grocery_and_Gourmet_Food'), + RatingOnlyAmazonReview2023Config(name='0core_rating_only_Sports_and_Outdoors'), + RatingOnlyAmazonReview2023Config(name='0core_rating_only_Home_and_Kitchen'), + RatingOnlyAmazonReview2023Config(name='0core_rating_only_Subscription_Boxes'), + RatingOnlyAmazonReview2023Config(name='0core_rating_only_Tools_and_Home_Improvement'), + RatingOnlyAmazonReview2023Config(name='0core_rating_only_Pet_Supplies'), + RatingOnlyAmazonReview2023Config(name='0core_rating_only_Video_Games'), + RatingOnlyAmazonReview2023Config(name='0core_rating_only_Kindle_Store'), + RatingOnlyAmazonReview2023Config(name='0core_rating_only_Clothing_Shoes_and_Jewelry'), + RatingOnlyAmazonReview2023Config(name='0core_rating_only_Patio_Lawn_and_Garden'), + RatingOnlyAmazonReview2023Config(name='0core_rating_only_Unknown'), + RatingOnlyAmazonReview2023Config(name='0core_rating_only_Books'), + RatingOnlyAmazonReview2023Config(name='0core_rating_only_Automotive'), + RatingOnlyAmazonReview2023Config(name='0core_rating_only_CDs_and_Vinyl'), + RatingOnlyAmazonReview2023Config(name='0core_rating_only_Beauty_and_Personal_Care'), + RatingOnlyAmazonReview2023Config(name='0core_rating_only_Amazon_Fashion'), + RatingOnlyAmazonReview2023Config(name='0core_rating_only_Magazine_Subscriptions'), + RatingOnlyAmazonReview2023Config(name='0core_rating_only_Software'), + RatingOnlyAmazonReview2023Config(name='0core_rating_only_Health_and_Personal_Care'), + RatingOnlyAmazonReview2023Config(name='0core_rating_only_Appliances'), + RatingOnlyAmazonReview2023Config(name='0core_rating_only_Movies_and_TV'), + # Rating only - 5core + RatingOnlyAmazonReview2023Config(name='5core_rating_only_All_Beauty'), + RatingOnlyAmazonReview2023Config(name='5core_rating_only_Toys_and_Games'), + RatingOnlyAmazonReview2023Config(name='5core_rating_only_Cell_Phones_and_Accessories'), + RatingOnlyAmazonReview2023Config(name='5core_rating_only_Industrial_and_Scientific'), + RatingOnlyAmazonReview2023Config(name='5core_rating_only_Gift_Cards'), + RatingOnlyAmazonReview2023Config(name='5core_rating_only_Musical_Instruments'), + RatingOnlyAmazonReview2023Config(name='5core_rating_only_Electronics'), + RatingOnlyAmazonReview2023Config(name='5core_rating_only_Arts_Crafts_and_Sewing'), + RatingOnlyAmazonReview2023Config(name='5core_rating_only_Baby_Products'), + RatingOnlyAmazonReview2023Config(name='5core_rating_only_Health_and_Household'), + RatingOnlyAmazonReview2023Config(name='5core_rating_only_Office_Products'), + RatingOnlyAmazonReview2023Config(name='5core_rating_only_Grocery_and_Gourmet_Food'), + RatingOnlyAmazonReview2023Config(name='5core_rating_only_Sports_and_Outdoors'), + RatingOnlyAmazonReview2023Config(name='5core_rating_only_Home_and_Kitchen'), + RatingOnlyAmazonReview2023Config(name='5core_rating_only_Tools_and_Home_Improvement'), + RatingOnlyAmazonReview2023Config(name='5core_rating_only_Pet_Supplies'), + RatingOnlyAmazonReview2023Config(name='5core_rating_only_Video_Games'), + RatingOnlyAmazonReview2023Config(name='5core_rating_only_Kindle_Store'), + RatingOnlyAmazonReview2023Config(name='5core_rating_only_Clothing_Shoes_and_Jewelry'), + RatingOnlyAmazonReview2023Config(name='5core_rating_only_Patio_Lawn_and_Garden'), + RatingOnlyAmazonReview2023Config(name='5core_rating_only_Unknown'), + RatingOnlyAmazonReview2023Config(name='5core_rating_only_Books'), + RatingOnlyAmazonReview2023Config(name='5core_rating_only_Automotive'), + RatingOnlyAmazonReview2023Config(name='5core_rating_only_CDs_and_Vinyl'), + RatingOnlyAmazonReview2023Config(name='5core_rating_only_Beauty_and_Personal_Care'), + RatingOnlyAmazonReview2023Config(name='5core_rating_only_Magazine_Subscriptions'), + RatingOnlyAmazonReview2023Config(name='5core_rating_only_Software'), + RatingOnlyAmazonReview2023Config(name='5core_rating_only_Movies_and_TV'), + # Benchmark - last_out - 0core + BenchmarkAmazonReview2023Config(name='0core_last_out_All_Beauty'), + BenchmarkAmazonReview2023Config(name='0core_last_out_Toys_and_Games'), + BenchmarkAmazonReview2023Config(name='0core_last_out_Cell_Phones_and_Accessories'), + BenchmarkAmazonReview2023Config(name='0core_last_out_Industrial_and_Scientific'), + BenchmarkAmazonReview2023Config(name='0core_last_out_Gift_Cards'), + BenchmarkAmazonReview2023Config(name='0core_last_out_Musical_Instruments'), + BenchmarkAmazonReview2023Config(name='0core_last_out_Electronics'), + BenchmarkAmazonReview2023Config(name='0core_last_out_Handmade_Products'), + BenchmarkAmazonReview2023Config(name='0core_last_out_Arts_Crafts_and_Sewing'), + BenchmarkAmazonReview2023Config(name='0core_last_out_Baby_Products'), + BenchmarkAmazonReview2023Config(name='0core_last_out_Health_and_Household'), + BenchmarkAmazonReview2023Config(name='0core_last_out_Office_Products'), + BenchmarkAmazonReview2023Config(name='0core_last_out_Digital_Music'), + BenchmarkAmazonReview2023Config(name='0core_last_out_Grocery_and_Gourmet_Food'), + BenchmarkAmazonReview2023Config(name='0core_last_out_Sports_and_Outdoors'), + BenchmarkAmazonReview2023Config(name='0core_last_out_Home_and_Kitchen'), + BenchmarkAmazonReview2023Config(name='0core_last_out_Subscription_Boxes'), + BenchmarkAmazonReview2023Config(name='0core_last_out_Tools_and_Home_Improvement'), + BenchmarkAmazonReview2023Config(name='0core_last_out_Pet_Supplies'), + BenchmarkAmazonReview2023Config(name='0core_last_out_Video_Games'), + BenchmarkAmazonReview2023Config(name='0core_last_out_Kindle_Store'), + BenchmarkAmazonReview2023Config(name='0core_last_out_Clothing_Shoes_and_Jewelry'), + BenchmarkAmazonReview2023Config(name='0core_last_out_Patio_Lawn_and_Garden'), + BenchmarkAmazonReview2023Config(name='0core_last_out_Unknown'), + BenchmarkAmazonReview2023Config(name='0core_last_out_Books'), + BenchmarkAmazonReview2023Config(name='0core_last_out_Automotive'), + BenchmarkAmazonReview2023Config(name='0core_last_out_CDs_and_Vinyl'), + BenchmarkAmazonReview2023Config(name='0core_last_out_Beauty_and_Personal_Care'), + BenchmarkAmazonReview2023Config(name='0core_last_out_Amazon_Fashion'), + BenchmarkAmazonReview2023Config(name='0core_last_out_Magazine_Subscriptions'), + BenchmarkAmazonReview2023Config(name='0core_last_out_Software'), + BenchmarkAmazonReview2023Config(name='0core_last_out_Health_and_Personal_Care'), + BenchmarkAmazonReview2023Config(name='0core_last_out_Appliances'), + BenchmarkAmazonReview2023Config(name='0core_last_out_Movies_and_TV'), + # Benchmark - last_out - 5core + BenchmarkAmazonReview2023Config(name='5core_last_out_All_Beauty'), + BenchmarkAmazonReview2023Config(name='5core_last_out_Toys_and_Games'), + BenchmarkAmazonReview2023Config(name='5core_last_out_Cell_Phones_and_Accessories'), + BenchmarkAmazonReview2023Config(name='5core_last_out_Industrial_and_Scientific'), + BenchmarkAmazonReview2023Config(name='5core_last_out_Gift_Cards'), + BenchmarkAmazonReview2023Config(name='5core_last_out_Musical_Instruments'), + BenchmarkAmazonReview2023Config(name='5core_last_out_Electronics'), + BenchmarkAmazonReview2023Config(name='5core_last_out_Arts_Crafts_and_Sewing'), + BenchmarkAmazonReview2023Config(name='5core_last_out_Baby_Products'), + BenchmarkAmazonReview2023Config(name='5core_last_out_Health_and_Household'), + BenchmarkAmazonReview2023Config(name='5core_last_out_Office_Products'), + BenchmarkAmazonReview2023Config(name='5core_last_out_Grocery_and_Gourmet_Food'), + BenchmarkAmazonReview2023Config(name='5core_last_out_Sports_and_Outdoors'), + BenchmarkAmazonReview2023Config(name='5core_last_out_Home_and_Kitchen'), + BenchmarkAmazonReview2023Config(name='5core_last_out_Tools_and_Home_Improvement'), + BenchmarkAmazonReview2023Config(name='5core_last_out_Pet_Supplies'), + BenchmarkAmazonReview2023Config(name='5core_last_out_Video_Games'), + BenchmarkAmazonReview2023Config(name='5core_last_out_Kindle_Store'), + BenchmarkAmazonReview2023Config(name='5core_last_out_Clothing_Shoes_and_Jewelry'), + BenchmarkAmazonReview2023Config(name='5core_last_out_Patio_Lawn_and_Garden'), + BenchmarkAmazonReview2023Config(name='5core_last_out_Unknown'), + BenchmarkAmazonReview2023Config(name='5core_last_out_Books'), + BenchmarkAmazonReview2023Config(name='5core_last_out_Automotive'), + BenchmarkAmazonReview2023Config(name='5core_last_out_CDs_and_Vinyl'), + BenchmarkAmazonReview2023Config(name='5core_last_out_Beauty_and_Personal_Care'), + BenchmarkAmazonReview2023Config(name='5core_last_out_Magazine_Subscriptions'), + BenchmarkAmazonReview2023Config(name='5core_last_out_Software'), + BenchmarkAmazonReview2023Config(name='5core_last_out_Movies_and_TV'), + # Benchmark - last_out_w_his - 0core + BenchmarkAmazonReview2023Config(name='0core_last_out_w_his_All_Beauty'), + BenchmarkAmazonReview2023Config(name='0core_last_out_w_his_Toys_and_Games'), + BenchmarkAmazonReview2023Config(name='0core_last_out_w_his_Cell_Phones_and_Accessories'), + BenchmarkAmazonReview2023Config(name='0core_last_out_w_his_Industrial_and_Scientific'), + BenchmarkAmazonReview2023Config(name='0core_last_out_w_his_Gift_Cards'), + BenchmarkAmazonReview2023Config(name='0core_last_out_w_his_Musical_Instruments'), + BenchmarkAmazonReview2023Config(name='0core_last_out_w_his_Electronics'), + BenchmarkAmazonReview2023Config(name='0core_last_out_w_his_Handmade_Products'), + BenchmarkAmazonReview2023Config(name='0core_last_out_w_his_Arts_Crafts_and_Sewing'), + BenchmarkAmazonReview2023Config(name='0core_last_out_w_his_Baby_Products'), + BenchmarkAmazonReview2023Config(name='0core_last_out_w_his_Health_and_Household'), + BenchmarkAmazonReview2023Config(name='0core_last_out_w_his_Office_Products'), + BenchmarkAmazonReview2023Config(name='0core_last_out_w_his_Digital_Music'), + BenchmarkAmazonReview2023Config(name='0core_last_out_w_his_Grocery_and_Gourmet_Food'), + BenchmarkAmazonReview2023Config(name='0core_last_out_w_his_Sports_and_Outdoors'), + BenchmarkAmazonReview2023Config(name='0core_last_out_w_his_Home_and_Kitchen'), + BenchmarkAmazonReview2023Config(name='0core_last_out_w_his_Subscription_Boxes'), + BenchmarkAmazonReview2023Config(name='0core_last_out_w_his_Tools_and_Home_Improvement'), + BenchmarkAmazonReview2023Config(name='0core_last_out_w_his_Pet_Supplies'), + BenchmarkAmazonReview2023Config(name='0core_last_out_w_his_Video_Games'), + BenchmarkAmazonReview2023Config(name='0core_last_out_w_his_Kindle_Store'), + BenchmarkAmazonReview2023Config(name='0core_last_out_w_his_Clothing_Shoes_and_Jewelry'), + BenchmarkAmazonReview2023Config(name='0core_last_out_w_his_Patio_Lawn_and_Garden'), + BenchmarkAmazonReview2023Config(name='0core_last_out_w_his_Unknown'), + BenchmarkAmazonReview2023Config(name='0core_last_out_w_his_Books'), + BenchmarkAmazonReview2023Config(name='0core_last_out_w_his_Automotive'), + BenchmarkAmazonReview2023Config(name='0core_last_out_w_his_CDs_and_Vinyl'), + BenchmarkAmazonReview2023Config(name='0core_last_out_w_his_Beauty_and_Personal_Care'), + BenchmarkAmazonReview2023Config(name='0core_last_out_w_his_Amazon_Fashion'), + BenchmarkAmazonReview2023Config(name='0core_last_out_w_his_Magazine_Subscriptions'), + BenchmarkAmazonReview2023Config(name='0core_last_out_w_his_Software'), + BenchmarkAmazonReview2023Config(name='0core_last_out_w_his_Health_and_Personal_Care'), + BenchmarkAmazonReview2023Config(name='0core_last_out_w_his_Appliances'), + BenchmarkAmazonReview2023Config(name='0core_last_out_w_his_Movies_and_TV'), + # Benchmark - last_out_w_his - 5core + BenchmarkAmazonReview2023Config(name='5core_last_out_w_his_All_Beauty'), + BenchmarkAmazonReview2023Config(name='5core_last_out_w_his_Toys_and_Games'), + BenchmarkAmazonReview2023Config(name='5core_last_out_w_his_Cell_Phones_and_Accessories'), + BenchmarkAmazonReview2023Config(name='5core_last_out_w_his_Industrial_and_Scientific'), + BenchmarkAmazonReview2023Config(name='5core_last_out_w_his_Gift_Cards'), + BenchmarkAmazonReview2023Config(name='5core_last_out_w_his_Musical_Instruments'), + BenchmarkAmazonReview2023Config(name='5core_last_out_w_his_Electronics'), + BenchmarkAmazonReview2023Config(name='5core_last_out_w_his_Arts_Crafts_and_Sewing'), + BenchmarkAmazonReview2023Config(name='5core_last_out_w_his_Baby_Products'), + BenchmarkAmazonReview2023Config(name='5core_last_out_w_his_Health_and_Household'), + BenchmarkAmazonReview2023Config(name='5core_last_out_w_his_Office_Products'), + BenchmarkAmazonReview2023Config(name='5core_last_out_w_his_Grocery_and_Gourmet_Food'), + BenchmarkAmazonReview2023Config(name='5core_last_out_w_his_Sports_and_Outdoors'), + BenchmarkAmazonReview2023Config(name='5core_last_out_w_his_Home_and_Kitchen'), + BenchmarkAmazonReview2023Config(name='5core_last_out_w_his_Tools_and_Home_Improvement'), + BenchmarkAmazonReview2023Config(name='5core_last_out_w_his_Pet_Supplies'), + BenchmarkAmazonReview2023Config(name='5core_last_out_w_his_Video_Games'), + BenchmarkAmazonReview2023Config(name='5core_last_out_w_his_Kindle_Store'), + BenchmarkAmazonReview2023Config(name='5core_last_out_w_his_Clothing_Shoes_and_Jewelry'), + BenchmarkAmazonReview2023Config(name='5core_last_out_w_his_Patio_Lawn_and_Garden'), + BenchmarkAmazonReview2023Config(name='5core_last_out_w_his_Unknown'), + BenchmarkAmazonReview2023Config(name='5core_last_out_w_his_Books'), + BenchmarkAmazonReview2023Config(name='5core_last_out_w_his_Automotive'), + BenchmarkAmazonReview2023Config(name='5core_last_out_w_his_CDs_and_Vinyl'), + BenchmarkAmazonReview2023Config(name='5core_last_out_w_his_Beauty_and_Personal_Care'), + BenchmarkAmazonReview2023Config(name='5core_last_out_w_his_Magazine_Subscriptions'), + BenchmarkAmazonReview2023Config(name='5core_last_out_w_his_Software'), + BenchmarkAmazonReview2023Config(name='5core_last_out_w_his_Movies_and_TV'), + # Benchmark - timestamp - 0core + BenchmarkAmazonReview2023Config(name='0core_timestamp_All_Beauty'), + BenchmarkAmazonReview2023Config(name='0core_timestamp_Toys_and_Games'), + BenchmarkAmazonReview2023Config(name='0core_timestamp_Cell_Phones_and_Accessories'), + BenchmarkAmazonReview2023Config(name='0core_timestamp_Industrial_and_Scientific'), + BenchmarkAmazonReview2023Config(name='0core_timestamp_Gift_Cards'), + BenchmarkAmazonReview2023Config(name='0core_timestamp_Musical_Instruments'), + BenchmarkAmazonReview2023Config(name='0core_timestamp_Electronics'), + BenchmarkAmazonReview2023Config(name='0core_timestamp_Handmade_Products'), + BenchmarkAmazonReview2023Config(name='0core_timestamp_Arts_Crafts_and_Sewing'), + BenchmarkAmazonReview2023Config(name='0core_timestamp_Baby_Products'), + BenchmarkAmazonReview2023Config(name='0core_timestamp_Health_and_Household'), + BenchmarkAmazonReview2023Config(name='0core_timestamp_Office_Products'), + BenchmarkAmazonReview2023Config(name='0core_timestamp_Digital_Music'), + BenchmarkAmazonReview2023Config(name='0core_timestamp_Grocery_and_Gourmet_Food'), + BenchmarkAmazonReview2023Config(name='0core_timestamp_Sports_and_Outdoors'), + BenchmarkAmazonReview2023Config(name='0core_timestamp_Home_and_Kitchen'), + BenchmarkAmazonReview2023Config(name='0core_timestamp_Subscription_Boxes'), + BenchmarkAmazonReview2023Config(name='0core_timestamp_Tools_and_Home_Improvement'), + BenchmarkAmazonReview2023Config(name='0core_timestamp_Pet_Supplies'), + BenchmarkAmazonReview2023Config(name='0core_timestamp_Video_Games'), + BenchmarkAmazonReview2023Config(name='0core_timestamp_Kindle_Store'), + BenchmarkAmazonReview2023Config(name='0core_timestamp_Clothing_Shoes_and_Jewelry'), + BenchmarkAmazonReview2023Config(name='0core_timestamp_Patio_Lawn_and_Garden'), + BenchmarkAmazonReview2023Config(name='0core_timestamp_Unknown'), + BenchmarkAmazonReview2023Config(name='0core_timestamp_Books'), + BenchmarkAmazonReview2023Config(name='0core_timestamp_Automotive'), + BenchmarkAmazonReview2023Config(name='0core_timestamp_CDs_and_Vinyl'), + BenchmarkAmazonReview2023Config(name='0core_timestamp_Beauty_and_Personal_Care'), + BenchmarkAmazonReview2023Config(name='0core_timestamp_Amazon_Fashion'), + BenchmarkAmazonReview2023Config(name='0core_timestamp_Magazine_Subscriptions'), + BenchmarkAmazonReview2023Config(name='0core_timestamp_Software'), + BenchmarkAmazonReview2023Config(name='0core_timestamp_Health_and_Personal_Care'), + BenchmarkAmazonReview2023Config(name='0core_timestamp_Appliances'), + BenchmarkAmazonReview2023Config(name='0core_timestamp_Movies_and_TV'), + # Benchmark - timestamp - 5core + BenchmarkAmazonReview2023Config(name='5core_timestamp_All_Beauty'), + BenchmarkAmazonReview2023Config(name='5core_timestamp_Toys_and_Games'), + BenchmarkAmazonReview2023Config(name='5core_timestamp_Cell_Phones_and_Accessories'), + BenchmarkAmazonReview2023Config(name='5core_timestamp_Industrial_and_Scientific'), + BenchmarkAmazonReview2023Config(name='5core_timestamp_Gift_Cards'), + BenchmarkAmazonReview2023Config(name='5core_timestamp_Musical_Instruments'), + BenchmarkAmazonReview2023Config(name='5core_timestamp_Electronics'), + BenchmarkAmazonReview2023Config(name='5core_timestamp_Arts_Crafts_and_Sewing'), + BenchmarkAmazonReview2023Config(name='5core_timestamp_Baby_Products'), + BenchmarkAmazonReview2023Config(name='5core_timestamp_Health_and_Household'), + BenchmarkAmazonReview2023Config(name='5core_timestamp_Office_Products'), + BenchmarkAmazonReview2023Config(name='5core_timestamp_Grocery_and_Gourmet_Food'), + BenchmarkAmazonReview2023Config(name='5core_timestamp_Sports_and_Outdoors'), + BenchmarkAmazonReview2023Config(name='5core_timestamp_Home_and_Kitchen'), + BenchmarkAmazonReview2023Config(name='5core_timestamp_Tools_and_Home_Improvement'), + BenchmarkAmazonReview2023Config(name='5core_timestamp_Pet_Supplies'), + BenchmarkAmazonReview2023Config(name='5core_timestamp_Video_Games'), + BenchmarkAmazonReview2023Config(name='5core_timestamp_Kindle_Store'), + BenchmarkAmazonReview2023Config(name='5core_timestamp_Clothing_Shoes_and_Jewelry'), + BenchmarkAmazonReview2023Config(name='5core_timestamp_Patio_Lawn_and_Garden'), + BenchmarkAmazonReview2023Config(name='5core_timestamp_Unknown'), + BenchmarkAmazonReview2023Config(name='5core_timestamp_Books'), + BenchmarkAmazonReview2023Config(name='5core_timestamp_Automotive'), + BenchmarkAmazonReview2023Config(name='5core_timestamp_CDs_and_Vinyl'), + BenchmarkAmazonReview2023Config(name='5core_timestamp_Beauty_and_Personal_Care'), + BenchmarkAmazonReview2023Config(name='5core_timestamp_Magazine_Subscriptions'), + BenchmarkAmazonReview2023Config(name='5core_timestamp_Software'), + BenchmarkAmazonReview2023Config(name='5core_timestamp_Movies_and_TV'), + # Benchmark - timestamp_w_his - 0core + BenchmarkAmazonReview2023Config(name='0core_timestamp_w_his_All_Beauty'), + BenchmarkAmazonReview2023Config(name='0core_timestamp_w_his_Toys_and_Games'), + BenchmarkAmazonReview2023Config(name='0core_timestamp_w_his_Cell_Phones_and_Accessories'), + BenchmarkAmazonReview2023Config(name='0core_timestamp_w_his_Industrial_and_Scientific'), + BenchmarkAmazonReview2023Config(name='0core_timestamp_w_his_Gift_Cards'), + BenchmarkAmazonReview2023Config(name='0core_timestamp_w_his_Musical_Instruments'), + BenchmarkAmazonReview2023Config(name='0core_timestamp_w_his_Electronics'), + BenchmarkAmazonReview2023Config(name='0core_timestamp_w_his_Handmade_Products'), + BenchmarkAmazonReview2023Config(name='0core_timestamp_w_his_Arts_Crafts_and_Sewing'), + BenchmarkAmazonReview2023Config(name='0core_timestamp_w_his_Baby_Products'), + BenchmarkAmazonReview2023Config(name='0core_timestamp_w_his_Health_and_Household'), + BenchmarkAmazonReview2023Config(name='0core_timestamp_w_his_Office_Products'), + BenchmarkAmazonReview2023Config(name='0core_timestamp_w_his_Digital_Music'), + BenchmarkAmazonReview2023Config(name='0core_timestamp_w_his_Grocery_and_Gourmet_Food'), + BenchmarkAmazonReview2023Config(name='0core_timestamp_w_his_Sports_and_Outdoors'), + BenchmarkAmazonReview2023Config(name='0core_timestamp_w_his_Home_and_Kitchen'), + BenchmarkAmazonReview2023Config(name='0core_timestamp_w_his_Subscription_Boxes'), + BenchmarkAmazonReview2023Config(name='0core_timestamp_w_his_Tools_and_Home_Improvement'), + BenchmarkAmazonReview2023Config(name='0core_timestamp_w_his_Pet_Supplies'), + BenchmarkAmazonReview2023Config(name='0core_timestamp_w_his_Video_Games'), + BenchmarkAmazonReview2023Config(name='0core_timestamp_w_his_Kindle_Store'), + BenchmarkAmazonReview2023Config(name='0core_timestamp_w_his_Clothing_Shoes_and_Jewelry'), + BenchmarkAmazonReview2023Config(name='0core_timestamp_w_his_Patio_Lawn_and_Garden'), + BenchmarkAmazonReview2023Config(name='0core_timestamp_w_his_Unknown'), + BenchmarkAmazonReview2023Config(name='0core_timestamp_w_his_Books'), + BenchmarkAmazonReview2023Config(name='0core_timestamp_w_his_Automotive'), + BenchmarkAmazonReview2023Config(name='0core_timestamp_w_his_CDs_and_Vinyl'), + BenchmarkAmazonReview2023Config(name='0core_timestamp_w_his_Beauty_and_Personal_Care'), + BenchmarkAmazonReview2023Config(name='0core_timestamp_w_his_Amazon_Fashion'), + BenchmarkAmazonReview2023Config(name='0core_timestamp_w_his_Magazine_Subscriptions'), + BenchmarkAmazonReview2023Config(name='0core_timestamp_w_his_Software'), + BenchmarkAmazonReview2023Config(name='0core_timestamp_w_his_Health_and_Personal_Care'), + BenchmarkAmazonReview2023Config(name='0core_timestamp_w_his_Appliances'), + BenchmarkAmazonReview2023Config(name='0core_timestamp_w_his_Movies_and_TV'), + # Benchmark - timestamp_w_his - 5core + BenchmarkAmazonReview2023Config(name='5core_timestamp_w_his_All_Beauty'), + BenchmarkAmazonReview2023Config(name='5core_timestamp_w_his_Toys_and_Games'), + BenchmarkAmazonReview2023Config(name='5core_timestamp_w_his_Cell_Phones_and_Accessories'), + BenchmarkAmazonReview2023Config(name='5core_timestamp_w_his_Industrial_and_Scientific'), + BenchmarkAmazonReview2023Config(name='5core_timestamp_w_his_Gift_Cards'), + BenchmarkAmazonReview2023Config(name='5core_timestamp_w_his_Musical_Instruments'), + BenchmarkAmazonReview2023Config(name='5core_timestamp_w_his_Electronics'), + BenchmarkAmazonReview2023Config(name='5core_timestamp_w_his_Arts_Crafts_and_Sewing'), + BenchmarkAmazonReview2023Config(name='5core_timestamp_w_his_Baby_Products'), + BenchmarkAmazonReview2023Config(name='5core_timestamp_w_his_Health_and_Household'), + BenchmarkAmazonReview2023Config(name='5core_timestamp_w_his_Office_Products'), + BenchmarkAmazonReview2023Config(name='5core_timestamp_w_his_Grocery_and_Gourmet_Food'), + BenchmarkAmazonReview2023Config(name='5core_timestamp_w_his_Sports_and_Outdoors'), + BenchmarkAmazonReview2023Config(name='5core_timestamp_w_his_Home_and_Kitchen'), + BenchmarkAmazonReview2023Config(name='5core_timestamp_w_his_Tools_and_Home_Improvement'), + BenchmarkAmazonReview2023Config(name='5core_timestamp_w_his_Pet_Supplies'), + BenchmarkAmazonReview2023Config(name='5core_timestamp_w_his_Video_Games'), + BenchmarkAmazonReview2023Config(name='5core_timestamp_w_his_Kindle_Store'), + BenchmarkAmazonReview2023Config(name='5core_timestamp_w_his_Clothing_Shoes_and_Jewelry'), + BenchmarkAmazonReview2023Config(name='5core_timestamp_w_his_Patio_Lawn_and_Garden'), + BenchmarkAmazonReview2023Config(name='5core_timestamp_w_his_Unknown'), + BenchmarkAmazonReview2023Config(name='5core_timestamp_w_his_Books'), + BenchmarkAmazonReview2023Config(name='5core_timestamp_w_his_Automotive'), + BenchmarkAmazonReview2023Config(name='5core_timestamp_w_his_CDs_and_Vinyl'), + BenchmarkAmazonReview2023Config(name='5core_timestamp_w_his_Beauty_and_Personal_Care'), + BenchmarkAmazonReview2023Config(name='5core_timestamp_w_his_Magazine_Subscriptions'), + BenchmarkAmazonReview2023Config(name='5core_timestamp_w_his_Software'), + BenchmarkAmazonReview2023Config(name='5core_timestamp_w_his_Movies_and_TV'), + ] + + def _info(self): + features = None + if isinstance(self.config, RawMetaAmazonReview2023Config): + features = datasets.Features({ + 'main_category': datasets.Value('string'), + 'title': datasets.Value('string'), + 'average_rating': datasets.Value(dtype='float64'), + 'rating_number': datasets.Value(dtype='int64'), + 'features': datasets.Sequence(datasets.Value('string')), + 'description': datasets.Sequence(datasets.Value('string')), + 'price': datasets.Value('string'), + 'images': datasets.Sequence({ + 'hi_res': datasets.Value('string'), + 'large': datasets.Value('string'), + 'thumb': datasets.Value('string'), + 'variant': datasets.Value('string') + }), + 'videos': datasets.Sequence({ + 'title': datasets.Value('string'), + 'url': datasets.Value('string'), + 'user_id': datasets.Value('string') + }), + 'store': datasets.Value('string'), + 'categories': datasets.Sequence(datasets.Value('string')), + 'details': datasets.Value('string'), + 'parent_asin': datasets.Value('string'), + 'bought_together': datasets.Value('string'), # TODO: Check this type + 'subtitle': datasets.Value('string'), + 'author': datasets.Value('string') + }) + elif isinstance(self.config, RawReviewAmazonReview2023Config): + # TODO: Check review features + pass + + return datasets.DatasetInfo( + description=_AMAZON_REVIEW_2023_DESCRIPTION + self.config.description, + features=features + ) + + def _split_generators(self, dl_manager): + dl_dir = dl_manager.download_and_extract(self.config.data_dir) + if isinstance(self.config, BenchmarkAmazonReview2023Config): + return [ + datasets.SplitGenerator(name='train', gen_kwargs={"filepath": dl_dir['train']}), + datasets.SplitGenerator(name='valid', gen_kwargs={"filepath": dl_dir['valid']}), + datasets.SplitGenerator(name='test', gen_kwargs={"filepath": dl_dir['test']}), + ] + else: + return [ + datasets.SplitGenerator(name='full', gen_kwargs={"filepath": dl_dir}) + ] + + def _generate_examples(self, filepath): + with open(filepath, 'r', encoding='utf-8') as file: + if self.config.suffix == 'csv': + colnames = file.readline().strip().split(',') + for idx, line in enumerate(file): + if self.config.suffix == 'jsonl': + try: + dp = json.loads(line) + """ + For item metadata, 'details' is free-form structured data + Here we dump it to string to make huggingface datasets easy + to store. + """ + if isinstance(self.config, RawMetaAmazonReview2023Config): + if 'details' in dp: + dp['details'] = json.dumps(dp['details']) + if 'price' in dp: + dp['price'] = str(dp['price']) + for optional_key in ['subtitle', 'author']: + if optional_key not in dp: + dp[optional_key] = None + for i in range(len(dp['images'])): + for k in ['hi_res', 'large', 'thumb', 'variant']: + if k not in dp['images'][i]: + dp['images'][i][k] = None + for i in range(len(dp['videos'])): + for k in ['title', 'url', 'user_id']: + if k not in dp['videos'][i]: + dp['videos'][i][k] = None + except: + continue + elif self.config.suffix == 'csv': + line = line.strip().split(',') + dp = {k: v for k, v in zip(colnames, line)} + else: + raise ValueError(f'Unknown suffix {self.config.suffix}.') + yield idx, dp diff --git a/README.md b/README.md new file mode 100755 index 0000000000000000000000000000000000000000..96d6ce6ae8c9fe233b48903d8a35acc80befcaf0 --- /dev/null +++ b/README.md @@ -0,0 +1,733 @@ +--- +language: +- en +tags: +- recommendation +- reviews +size_categories: +- 10B + +This is a large-scale **Amazon Reviews** dataset, collected in **2023** by [McAuley Lab](https://cseweb.ucsd.edu/~jmcauley/), and it includes rich features such as: +1. **User Reviews** (*ratings*, *text*, *helpfulness votes*, etc.); +2. **Item Metadata** (*descriptions*, *price*, *raw image*, etc.); +3. **Links** (*user-item* / *bought together* graphs). + +## What's New? + +In the Amazon Reviews'23, we provide: + +1. **Larger Dataset:** We collected 571.54M reviews, 245.2% larger than the last version; +2. **Newer Interactions:** Current interactions range from May. 1996 to Sep. 2023; +3. **Richer Metadata:** More descriptive features in item metadata; +4. **Fine-grained Timestamp:** Interaction timestamp at the second or finer level; +5. **Cleaner Processing:** Cleaner item metadata than previous versions; +6. **Standard Splitting:** Standard data splits to encourage RecSys benchmarking. + +## Basic Statistics + +> We define the #R_Tokens as the number of [tokens](https://pypi.org/project/tiktoken/) in user reviews and #M_Tokens as the number of [tokens](https://pypi.org/project/tiktoken/) if treating the dictionaries of item attributes as strings. We emphasize them as important statistics in the era of LLMs. + +> We count the number of items based on user reviews rather than item metadata files. Note that some items lack metadata. + +### Compared to Previous Versions + +| Year | #Review | #User | #Item | #R_Token | #M_Token | #Domain | Timespan | +| ----------- | ---------: | -------: | -------: | ---------: | ------------: | ------------: | ------------: | +| [2013](https://snap.stanford.edu/data/web-Amazon-links.html) | 34.69M | 6.64M | 2.44M | 5.91B | -- | 28 | Jun'96 - Mar'13 | +| [2014](https://cseweb.ucsd.edu/~jmcauley/datasets/amazon/links.html) | 82.83M | 21.13M | 9.86M | 9.16B | 4.14B | 24 | May'96 - Jul'14 | +| [2018](https://cseweb.ucsd.edu/~jmcauley/datasets/amazon_v2/) | 233.10M | 43.53M | 15.17M | 15.73B | 7.99B | 29 | May'96 - Oct'18 | +| [2023](https://) | **571.54M** | **54.51M** | **48.19M** | **30.14B** | **30.78B** | **33** | **May'96 - Sep'23** | + + +### Grouped by Category + +| Category | #User | #Item | #Rating | #R_Token | #M_Token | Download | +| ------------------------ | ------: | ------: | --------: | -------: | -------: | ------------------------------: | +| All_Beauty | 632.0K | 112.6K | 701.5K | 31.6M | 74.1M | review, meta | +| Amazon_Fashion | 2.0M | 825.9K | 2.5M | 94.9M | 510.5M | review, meta | +| Appliances | 1.8M | 94.3K | 2.1M | 92.8M | 95.3M | review, meta | +| Arts_Crafts_and_Sewing | 4.6M | 801.3K | 9.0M | 350.0M | 695.4M | review, meta | +| Automotive | 8.0M | 2.0M | 20.0M | 824.9M | 1.7B | review, meta | +| Baby_Products | 3.4M | 217.7K | 6.0M | 323.3M | 218.6M | review, meta | +| Beauty_and_Personal_Care | 11.3M | 1.0M | 23.9M | 1.1B | 913.7M | review, meta | +| Books | 10.3M | 4.4M | 29.5M | 2.9B | 3.7B | review, meta | +| CDs_and_Vinyl | 1.8M | 701.7K | 4.8M | 514.8M | 287.5M | review, meta | +| Cell_Phones_and_Accessories | 11.6M | 1.3M | 20.8M | 935.4M | 1.3B | review, meta | +| Clothing_Shoes_and_Jewelry | 22.6M | 7.2M | 66.0M | 2.6B | 5.9B | review, meta | +| Digital_Music | 101.0K | 70.5K | 130.4K | 11.4M | 22.3M | review, meta | +| Electronics | 18.3M | 1.6M | 43.9M | 2.7B | 1.7B | review, meta | +| Gift_Cards | 132.7K | 1.1K | 152.4K | 3.6M | 630.0K | review, meta | +| Grocery_and_Gourmet_Food | 7.0M | 603.2K | 14.3M | 579.5M | 462.8M | review, meta | +| Handmade_Products | 586.6K | 164.7K | 664.2K | 23.3M | 125.8M | review, meta | +| Health_and_Household | 12.5M | 797.4K | 25.6M | 1.2B | 787.2M | review, meta | +| Health_and_Personal_Care | 461.7K | 60.3K | 494.1K | 23.9M | 40.3M | review, meta | +| Home_and_Kitchen | 23.2M | 3.7M | 67.4M | 3.1B | 3.8B | review, meta | +| Industrial_and_Scientific | 3.4M | 427.5K | 5.2M | 235.2M | 363.1M | review, meta | +| Kindle_Store | 5.6M | 1.6M | 25.6M | 2.2B | 1.7B | review, meta | +| Magazine_Subscriptions | 60.1K | 3.4K | 71.5K | 3.8M | 1.3M | review, meta | +| Movies_and_TV | 6.5M | 747.8K | 17.3M | 1.0B | 415.5M | review, meta | +| Musical_Instruments | 1.8M | 213.6K | 3.0M | 182.2M | 200.1M | review, meta | +| Office_Products | 7.6M | 710.4K | 12.8M | 574.7M | 682.8M | review, meta | +| Patio_Lawn_and_Garden | 8.6M | 851.7K | 16.5M | 781.3M | 875.1M | review, meta | +| Pet_Supplies | 7.8M | 492.7K | 16.8M | 905.9M | 511.0M | review, meta | +| Software | 2.6M | 89.2K | 4.9M | 179.4M | 67.1M | review, meta | +| Sports_and_Outdoors | 10.3M | 1.6M | 19.6M | 986.2M | 1.3B | review, meta | +| Subscription_Boxes | 15.2K | 641 | 16.2K | 1.0M | 447.0K | review, meta | +| Tools_and_Home_Improvement | 12.2M | 1.5M | 27.0M | 1.3B | 1.5B | review, meta | +| Toys_and_Games | 8.1M | 890.7K | 16.3M | 707.9M | 848.3M | review, meta | +| Video_Games | 2.8M | 137.2K | 4.6M | 347.9M | 137.3M | review, meta | +| Unknown | 23.1M | 13.2M | 63.8M | 3.3B | 232.8M | review, meta | + + +> Check Pure ID files and corresponding data splitting strategies in [Common Data Processing](https://amazon-reviews-2023.github.io/data_processing/index.html) section. + +## Quick Start + +### Load User Reviews + + +```python +from datasets import load_dataset + +dataset = load_dataset("McAuley-Lab/Amazon-Reviews-2023", "raw_review_All_Beauty", trust_remote_code=True) +print(dataset["full"][0]) +``` + +```json +{'rating': 5.0, + 'title': 'Such a lovely scent but not overpowering.', + 'text': "This spray is really nice. It smells really good, goes on really fine, and does the trick. I will say it feels like you need a lot of it though to get the texture I want. I have a lot of hair, medium thickness. I am comparing to other brands with yucky chemicals so I'm gonna stick with this. Try it!", + 'images': [], + 'asin': 'B00YQ6X8EO', + 'parent_asin': 'B00YQ6X8EO', + 'user_id': 'AGKHLEW2SOWHNMFQIJGBECAF7INQ', + 'timestamp': 1588687728923, + 'helpful_vote': 0, + 'verified_purchase': True} +``` + +### Load Item Metadata + +```python +dataset = load_dataset("McAuley-Lab/Amazon-Reviews-2023", "raw_meta_All_Beauty", split="full", trust_remote_code=True) +print(dataset[0]) +``` + +```json +{'main_category': 'All Beauty', + 'title': 'Howard LC0008 Leather Conditioner, 8-Ounce (4-Pack)', + 'average_rating': 4.8, + 'rating_number': 10, + 'features': [], + 'description': [], + 'price': 'None', + 'images': {'hi_res': [None, + 'https://m.media-amazon.com/images/I/71i77AuI9xL._SL1500_.jpg'], + 'large': ['https://m.media-amazon.com/images/I/41qfjSfqNyL.jpg', + 'https://m.media-amazon.com/images/I/41w2yznfuZL.jpg'], + 'thumb': ['https://m.media-amazon.com/images/I/41qfjSfqNyL._SS40_.jpg', + 'https://m.media-amazon.com/images/I/41w2yznfuZL._SS40_.jpg'], + 'variant': ['MAIN', 'PT01']}, + 'videos': {'title': [], 'url': [], 'user_id': []}, + 'store': 'Howard Products', + 'categories': [], + 'details': '{"Package Dimensions": "7.1 x 5.5 x 3 inches; 2.38 Pounds", "UPC": "617390882781"}', + 'parent_asin': 'B01CUPMQZE', + 'bought_together': None, + 'subtitle': None, + 'author': None} +``` + +> Check data loading examples and Huggingface datasets APIs in [Common Data Loading](https://amazon-reviews-2023.github.io/data_loading/index.html) section. + + +## Data Fields + +### For User Reviews + +| Field | Type | Explanation | +| ----- | ---- | ----------- | +| rating | float | Rating of the product (from 1.0 to 5.0). | +| title | str | Title of the user review. | +| text | str | Text body of the user review. | +| images | list | Images that users post after they have received the product. Each image has different sizes (small, medium, large), represented by the small_image_url, medium_image_url, and large_image_url respectively. | +| asin | str | ID of the product. | +| parent_asin | str | Parent ID of the product. Note: Products with different colors, styles, sizes usually belong to the same parent ID. The “asin” in previous Amazon datasets is actually parent ID. Please use parent ID to find product meta. | +| user_id | str | ID of the reviewer | +| timestamp | int | Time of the review (unix time) | +| verified_purchase | bool | User purchase verification | +| helpful_vote | int | Helpful votes of the review | + +### For Item Metadata + +| Field | Type | Explanation | +| ----- | ---- | ----------- | +| main_category | str | Main category (i.e., domain) of the product. | +| title | str | Name of the product. | +| average_rating | float | Rating of the product shown on the product page. | +| rating_number | int | Number of ratings in the product. | +| features | list | Bullet-point format features of the product. | +| description | list | Description of the product. | +| price | float | Price in US dollars (at time of crawling). | +| images | list | Images of the product. Each image has different sizes (thumb, large, hi_res). The “variant” field shows the position of image. | +| videos | list | Videos of the product including title and url. | +| store | str | Store name of the product. | +| categories | list | Hierarchical categories of the product. | +| details | dict | Product details, including materials, brand, sizes, etc. | +| parent_asin | str | Parent ID of the product. | +| bought_together | list | Recommended bundles from the websites. | + +## Citation + +```bibtex +@article{hou2024bridging, + title={Bridging Language and Items for Retrieval and Recommendation}, + author={Hou, Yupeng and Li, Jiacheng and He, Zhankui and Yan, An and Chen, Xiusi and McAuley, Julian}, + journal={arXiv preprint arXiv:2403.03952}, + year={2024} +} +``` + +## Contact Us + +- **Report Bugs**: To report bugs in the dataset, please file an issue on our [GitHub](https://github.com/hyp1231/AmazonReviews2023/issues/new). + +- **Others**: For research collaborations or other questions, please email **yphou AT ucsd.edu**. \ No newline at end of file diff --git a/all_categories.txt b/all_categories.txt new file mode 100644 index 0000000000000000000000000000000000000000..360a48180afefde76695e0248398fc87fb421b39 --- /dev/null +++ b/all_categories.txt @@ -0,0 +1,34 @@ +All_Beauty +Toys_and_Games +Cell_Phones_and_Accessories +Industrial_and_Scientific +Gift_Cards +Musical_Instruments +Electronics +Handmade_Products +Arts_Crafts_and_Sewing +Baby_Products +Health_and_Household +Office_Products +Digital_Music +Grocery_and_Gourmet_Food +Sports_and_Outdoors +Home_and_Kitchen +Subscription_Boxes +Tools_and_Home_Improvement +Pet_Supplies +Video_Games +Kindle_Store +Clothing_Shoes_and_Jewelry +Patio_Lawn_and_Garden +Unknown +Books +Automotive +CDs_and_Vinyl +Beauty_and_Personal_Care +Amazon_Fashion +Magazine_Subscriptions +Software +Health_and_Personal_Care +Appliances +Movies_and_TV diff --git a/asin2category.json b/asin2category.json new file mode 100644 index 0000000000000000000000000000000000000000..057610803c1216c2ab35a6ff393d895b6b5b890a --- /dev/null +++ b/asin2category.json @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3447e014ccb9228540779e6c2bf0fb0400a90ff07ba10e4d99b10d513b1d080 +size 1246846569 diff --git a/benchmark/0core/last_out/All_Beauty.test.csv b/benchmark/0core/last_out/All_Beauty.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..420733c7752e86ce4dec159ab60e8393c98861a1 --- /dev/null +++ b/benchmark/0core/last_out/All_Beauty.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:613207df61be61e3dcff205249fe1b4c1fe7b346b082cf162b5de21d0fc57dc3 +size 36655321 diff --git a/benchmark/0core/last_out/All_Beauty.train.csv b/benchmark/0core/last_out/All_Beauty.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..a09cc0771144ae43f958a0cf23dd44edff0932da --- /dev/null +++ b/benchmark/0core/last_out/All_Beauty.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0422e33efea29f0812d1cf67e7a506cdaf2efaddfcf29821f7e79c944cccafa4 +size 1110519 diff --git a/benchmark/0core/last_out/All_Beauty.valid.csv b/benchmark/0core/last_out/All_Beauty.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..3abc8ef6cb492be5cb3ea616f2c7f4c9233983ec --- /dev/null +++ b/benchmark/0core/last_out/All_Beauty.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fecc5ad85b69b900d4c49f1b3f2b0bce6f4e606370cdb6b291d82e6b91e6273 +size 2483851 diff --git a/benchmark/0core/last_out/Amazon_Fashion.test.csv b/benchmark/0core/last_out/Amazon_Fashion.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..86193877f3546d6b018e7639a5c8b045c28ee505 --- /dev/null +++ b/benchmark/0core/last_out/Amazon_Fashion.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91bbeaa067e0b1fcab4f8077d51aec2d2860c787d35862a9eff937becea63698 +size 118058587 diff --git a/benchmark/0core/last_out/Amazon_Fashion.train.csv b/benchmark/0core/last_out/Amazon_Fashion.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..f0684cbf70470bff4aab2b1f1bc7204308d779f8 --- /dev/null +++ b/benchmark/0core/last_out/Amazon_Fashion.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb685d5b1f166a3bd213a12488714b86e4c927f09b8114e2fd097bb37857dc3c +size 9136701 diff --git a/benchmark/0core/last_out/Amazon_Fashion.valid.csv b/benchmark/0core/last_out/Amazon_Fashion.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..5c44ffa1a618ec79af54f8135e61614af36836b4 --- /dev/null +++ b/benchmark/0core/last_out/Amazon_Fashion.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ef546f40fa40ff8bae755924f481eab3062458b23465e1db1aba2efff966ede +size 16321065 diff --git a/benchmark/0core/last_out/Appliances.test.csv b/benchmark/0core/last_out/Appliances.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..84c1b53d86c79cb6e5e5c9503429b0d2a362e7f7 --- /dev/null +++ b/benchmark/0core/last_out/Appliances.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bde329794fd718e6fce80916f693823285a9db147971e1e94448b1c1dead2679 +size 101832586 diff --git a/benchmark/0core/last_out/Appliances.train.csv b/benchmark/0core/last_out/Appliances.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..2bf102ea3c7fa6c79658555dbfc2c8d1cec26c73 --- /dev/null +++ b/benchmark/0core/last_out/Appliances.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50b7c8200f2cad82d452889c8f2091e1af1cc52f7b4f5dc97e20b2cbe0642f5f +size 6079589 diff --git a/benchmark/0core/last_out/Appliances.valid.csv b/benchmark/0core/last_out/Appliances.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..767e144df040245470f56b57229b44791d31bccc --- /dev/null +++ b/benchmark/0core/last_out/Appliances.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a38b962209a1f90d7329873aa7c2e9bc1954b329a2ada45bf44fe35fe85e6695 +size 14119735 diff --git a/benchmark/0core/last_out/Arts_Crafts_and_Sewing.test.csv b/benchmark/0core/last_out/Arts_Crafts_and_Sewing.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..42169cb16fa68417366dce86f2420b40b77e1b04 --- /dev/null +++ b/benchmark/0core/last_out/Arts_Crafts_and_Sewing.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d82de80cbb42704ee0866aa61f619540d14188ad01deadb43f4d8b5d4adddf1 +size 268238377 diff --git a/benchmark/0core/last_out/Arts_Crafts_and_Sewing.train.csv b/benchmark/0core/last_out/Arts_Crafts_and_Sewing.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..e2f37f5fa1a668ac7cc21f724a1357947f8a9165 --- /dev/null +++ b/benchmark/0core/last_out/Arts_Crafts_and_Sewing.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7321f80d3a33bdfb0222abad68ce659883b653e221384a0f4cbed0d626486064 +size 160571851 diff --git a/benchmark/0core/last_out/Arts_Crafts_and_Sewing.valid.csv b/benchmark/0core/last_out/Arts_Crafts_and_Sewing.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..f9f46937169c19c90939355179e184d7f8534658 --- /dev/null +++ b/benchmark/0core/last_out/Arts_Crafts_and_Sewing.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be9441725668f7c0e89dfa14a629b25dcedccbf7395792587b71a3999f484e75 +size 84012810 diff --git a/benchmark/0core/last_out/Automotive.test.csv b/benchmark/0core/last_out/Automotive.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..352c3260fa1dc8938b0fd3bea563cfa94e8699d6 --- /dev/null +++ b/benchmark/0core/last_out/Automotive.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13a2763a6fde70adde12e281c1748577064f3d2868ca0a13cb845c2f5b33d47f +size 465145425 diff --git a/benchmark/0core/last_out/Automotive.train.csv b/benchmark/0core/last_out/Automotive.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..d363346bc3574450c8a4abc75f7ed16bc963bd33 --- /dev/null +++ b/benchmark/0core/last_out/Automotive.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19fde50b0f191cac9ce94deb10d8d1d29f761092f83943a49d115ff97470cf65 +size 487562849 diff --git a/benchmark/0core/last_out/Automotive.valid.csv b/benchmark/0core/last_out/Automotive.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..aaefd27eadb8f70d14912ca8ef8ced1718198b8c --- /dev/null +++ b/benchmark/0core/last_out/Automotive.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3c81567588e071af2abc3766a82d4f33075960bbc8f9a9eee955ab35f5ad366 +size 189480357 diff --git a/benchmark/0core/last_out/Baby_Products.test.csv b/benchmark/0core/last_out/Baby_Products.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..7dc80f1a86d9ac3551bdcc1fd3deab3eb822e5c6 --- /dev/null +++ b/benchmark/0core/last_out/Baby_Products.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4380fdf7e82efc21706ad3f4ec2139c8ccf307825aca8bf181cd511950d82612 +size 196400035 diff --git a/benchmark/0core/last_out/Baby_Products.train.csv b/benchmark/0core/last_out/Baby_Products.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..35e242f4d15c5ebca2d6b2dc7bcbe3ffd87a2e45 --- /dev/null +++ b/benchmark/0core/last_out/Baby_Products.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23cb694d34058f1714ff063c727ff91837664e659494105fd4f0decfc1709bb9 +size 90027871 diff --git a/benchmark/0core/last_out/Baby_Products.valid.csv b/benchmark/0core/last_out/Baby_Products.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..03bcf5b96114edc042ede01d59921dad7cc9deda --- /dev/null +++ b/benchmark/0core/last_out/Baby_Products.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d112bebd3a87e9caecb83033b69373f86dffc0d75cb7a737a4b44603065ac42 +size 58907159 diff --git a/benchmark/0core/last_out/Beauty_and_Personal_Care.test.csv b/benchmark/0core/last_out/Beauty_and_Personal_Care.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..d2828215abd787316a1aa12a2b909c1c80e0e083 --- /dev/null +++ b/benchmark/0core/last_out/Beauty_and_Personal_Care.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee1a98f7f9caabe692af6bd08663ccc7d14d6ec4b889398a78941a77eab53dee +size 656895810 diff --git a/benchmark/0core/last_out/Beauty_and_Personal_Care.train.csv b/benchmark/0core/last_out/Beauty_and_Personal_Care.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..e58e9582ab08af2ff0a14db00742e6e4031a2f75 --- /dev/null +++ b/benchmark/0core/last_out/Beauty_and_Personal_Care.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3c778438274afe36fe815eae9e483add26d27b8efa1b852f48518719586719f +size 465003501 diff --git a/benchmark/0core/last_out/Beauty_and_Personal_Care.valid.csv b/benchmark/0core/last_out/Beauty_and_Personal_Care.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..325ba1937fc9cdcf3311cd9d70daf01d1569330d --- /dev/null +++ b/benchmark/0core/last_out/Beauty_and_Personal_Care.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:789bc7674f9b8f622ed75a02e08889b34d90b0836bfed3d08a7e2086ce3ff58d +size 246434408 diff --git a/benchmark/0core/last_out/Books.test.csv b/benchmark/0core/last_out/Books.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..284197b23d7736ca9a0b275441fbee676784a93e --- /dev/null +++ b/benchmark/0core/last_out/Books.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c57d57559cea7d52818f18014cc6e1da75801ff4912fc966b5e4922fe6b783dd +size 597174842 diff --git a/benchmark/0core/last_out/Books.train.csv b/benchmark/0core/last_out/Books.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..eb633c12e95911b71e9b637dae9afa9f1a67b60d --- /dev/null +++ b/benchmark/0core/last_out/Books.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:997b7b312e0f019dd2a5eaeee9f6b9bdbbb76939e90c8e7aa2e0c8d9a1c3e507 +size 841370989 diff --git a/benchmark/0core/last_out/Books.valid.csv b/benchmark/0core/last_out/Books.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..cd282f5c1282e2e2083b3dfa8152acc9ace37a12 --- /dev/null +++ b/benchmark/0core/last_out/Books.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe353f544f63b1e7869ab3be46e91f7719ae8321c65dfea482ca5363ba3e09c0 +size 251262781 diff --git a/benchmark/0core/last_out/CDs_and_Vinyl.test.csv b/benchmark/0core/last_out/CDs_and_Vinyl.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..e73c2f80c703bbdd4a93bfa075b8bf991b80c601 --- /dev/null +++ b/benchmark/0core/last_out/CDs_and_Vinyl.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7b9755af48532c8639820cb307373efc4f755a74e002747baaf44e7c07ef4b9 +size 101696713 diff --git a/benchmark/0core/last_out/CDs_and_Vinyl.train.csv b/benchmark/0core/last_out/CDs_and_Vinyl.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..e33eba7f5d01c863ed4bc0a0832460ff8a2b5af3 --- /dev/null +++ b/benchmark/0core/last_out/CDs_and_Vinyl.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e768d7df627119154f613b152d12eb5db9b95e446b1894ec8c2a6998db974896 +size 137292999 diff --git a/benchmark/0core/last_out/CDs_and_Vinyl.valid.csv b/benchmark/0core/last_out/CDs_and_Vinyl.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..32d9c2e27f653f2abcebd9591d126d1601afc14b --- /dev/null +++ b/benchmark/0core/last_out/CDs_and_Vinyl.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31207e6ccea135bbeba41b84959fd00818c4076d9fd759ff22927ff19e05365a +size 37608791 diff --git a/benchmark/0core/last_out/Cell_Phones_and_Accessories.test.csv b/benchmark/0core/last_out/Cell_Phones_and_Accessories.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..6a5624215e2178ccc6acf514e265aa4e64e0e633 --- /dev/null +++ b/benchmark/0core/last_out/Cell_Phones_and_Accessories.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3b19d80820237455e21805a6d14744f9e5b05040a04c42387d7f373f45b9c9e +size 672695512 diff --git a/benchmark/0core/last_out/Cell_Phones_and_Accessories.train.csv b/benchmark/0core/last_out/Cell_Phones_and_Accessories.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..f1431d454cefa20ca4d8f8c11bc62f19d0f198fd --- /dev/null +++ b/benchmark/0core/last_out/Cell_Phones_and_Accessories.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b90a7da31bca81f71b30d6719fdd21cc3153a74ceef4e4592f94d0c5ea0c2c0f +size 284262249 diff --git a/benchmark/0core/last_out/Cell_Phones_and_Accessories.valid.csv b/benchmark/0core/last_out/Cell_Phones_and_Accessories.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..3058b375fbf1ea6e2aa75368e524221ea466a952 --- /dev/null +++ b/benchmark/0core/last_out/Cell_Phones_and_Accessories.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08425837433c0a1dbc337790773166fa981607267ec8501fe288adefdcbb3444 +size 235554970 diff --git a/benchmark/0core/last_out/Clothing_Shoes_and_Jewelry.test.csv b/benchmark/0core/last_out/Clothing_Shoes_and_Jewelry.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..a6683637e0544d8e1835a13f06aea800fdabe82e --- /dev/null +++ b/benchmark/0core/last_out/Clothing_Shoes_and_Jewelry.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01aa091138512c9813a5539c752192ca02329c8fc57a21d15d8e90a80fb11679 +size 1308095592 diff --git a/benchmark/0core/last_out/Clothing_Shoes_and_Jewelry.train.csv b/benchmark/0core/last_out/Clothing_Shoes_and_Jewelry.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..64b8d2950dbca01fe2de06bf213beba019214626 --- /dev/null +++ b/benchmark/0core/last_out/Clothing_Shoes_and_Jewelry.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d36c8d19d61fd7183dda923a054241576cd90836b5844dd8f02ee0c7cbfba1a +size 1803510628 diff --git a/benchmark/0core/last_out/Clothing_Shoes_and_Jewelry.valid.csv b/benchmark/0core/last_out/Clothing_Shoes_and_Jewelry.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..59f4b5503e6adaead8f9adc4c0d123644faa57e7 --- /dev/null +++ b/benchmark/0core/last_out/Clothing_Shoes_and_Jewelry.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20e7f71e75dfb74f43396568daabe8df375fd72c0ebf182cd7fb6db67ef80c6b +size 668851828 diff --git a/benchmark/0core/last_out/Digital_Music.test.csv b/benchmark/0core/last_out/Digital_Music.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..9febcc84a62243adf2ae3b8f93d5ca354bb10bdd --- /dev/null +++ b/benchmark/0core/last_out/Digital_Music.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41675fce830a7e1f8c1f8a528696190bdf606473b54e893d90379db538a7aa77 +size 5854594 diff --git a/benchmark/0core/last_out/Digital_Music.train.csv b/benchmark/0core/last_out/Digital_Music.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..f367626a9324aefc645eb90a7981fbed2d9435fb --- /dev/null +++ b/benchmark/0core/last_out/Digital_Music.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b870b147883de7acffc5f6adc9983f892f5ac881cb1efc0def56b15853525a6 +size 918825 diff --git a/benchmark/0core/last_out/Digital_Music.valid.csv b/benchmark/0core/last_out/Digital_Music.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..c1a3d09f1f5ea440f1a16946cc6402f6a607d105 --- /dev/null +++ b/benchmark/0core/last_out/Digital_Music.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5b90019b50918434f065525fd9b8b7302fc556886d37214b54bde891912cb7a +size 694279 diff --git a/benchmark/0core/last_out/Electronics.test.csv b/benchmark/0core/last_out/Electronics.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..9197fa45eb7c9ff12800b3ece133de5271f333bb --- /dev/null +++ b/benchmark/0core/last_out/Electronics.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae06617f008d8e02568227e860b682f24aa6fe03bdf8af55837fb2de994d3adb +size 1060596894 diff --git a/benchmark/0core/last_out/Electronics.train.csv b/benchmark/0core/last_out/Electronics.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..87addbae7e73388c84d430aec94123cd67c1bb90 --- /dev/null +++ b/benchmark/0core/last_out/Electronics.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cdb4e748d7b5effc34072527a4d40d08b0e6aea36800b07a4bac9c690b8d6f45 +size 1000270231 diff --git a/benchmark/0core/last_out/Electronics.valid.csv b/benchmark/0core/last_out/Electronics.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..4c5bcd21d1c1a707bd57f1be5d7984ad0c90a788 --- /dev/null +++ b/benchmark/0core/last_out/Electronics.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9de39a0615975ee6b46954ddb0dd30024cd202b88f10181e78aa926f0f4341bb +size 454338381 diff --git a/benchmark/0core/last_out/Gift_Cards.test.csv b/benchmark/0core/last_out/Gift_Cards.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..615a22b59d50e5fc155d1eeec9a53c60eed273cc --- /dev/null +++ b/benchmark/0core/last_out/Gift_Cards.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fccab95534cf5b48caf165563c00c40581498600f54b50e79f8eb2d9e3d6db3f +size 7698497 diff --git a/benchmark/0core/last_out/Gift_Cards.train.csv b/benchmark/0core/last_out/Gift_Cards.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..0799c49589c73fac15061c6ef0ce866082ae3d5d --- /dev/null +++ b/benchmark/0core/last_out/Gift_Cards.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d335fa9acc95775a6b839e6d2a655064c7ca602afc11cf5387b54f06b294c5a1 +size 332261 diff --git a/benchmark/0core/last_out/Gift_Cards.valid.csv b/benchmark/0core/last_out/Gift_Cards.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..b55e274fdad31f8279dfe65d8afd8abb239ffc66 --- /dev/null +++ b/benchmark/0core/last_out/Gift_Cards.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f42f5a0f60c91da9d26485f753f27e9a024953a393171c74b805b9b7a96f0f1 +size 662745 diff --git a/benchmark/0core/last_out/Grocery_and_Gourmet_Food.test.csv b/benchmark/0core/last_out/Grocery_and_Gourmet_Food.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..afa310e992b2c09fe902c34dc465336282b88b8a --- /dev/null +++ b/benchmark/0core/last_out/Grocery_and_Gourmet_Food.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:835abe06a293b29ad523ddf9abc12f8cca473cac8cbe74c89fede242902d82a7 +size 407994970 diff --git a/benchmark/0core/last_out/Grocery_and_Gourmet_Food.train.csv b/benchmark/0core/last_out/Grocery_and_Gourmet_Food.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..cd1ccf1a94b1c150058394fa71f969853f523518 --- /dev/null +++ b/benchmark/0core/last_out/Grocery_and_Gourmet_Food.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2e8d6ed0b3e0ab98290fb123f423790adef16d5460b0815ab027040ddaeef5e +size 272215370 diff --git a/benchmark/0core/last_out/Grocery_and_Gourmet_Food.valid.csv b/benchmark/0core/last_out/Grocery_and_Gourmet_Food.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..260ddacb7ed71f3a9b3cc51c9d0932226a1864dd --- /dev/null +++ b/benchmark/0core/last_out/Grocery_and_Gourmet_Food.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8c48f3f729a4d2b9e3f227d28b5f91f165100c553638e61db6a1a6dd88a36b3 +size 136507170 diff --git a/benchmark/0core/last_out/Handmade_Products.test.csv b/benchmark/0core/last_out/Handmade_Products.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..39ddf3ee4d01d60e55406127638351508d26eaa3 --- /dev/null +++ b/benchmark/0core/last_out/Handmade_Products.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:829cecd5fb3754d385c093e0a3264e2fa7ad311bd4d4db1209fa75a35a8f5d43 +size 34023631 diff --git a/benchmark/0core/last_out/Handmade_Products.train.csv b/benchmark/0core/last_out/Handmade_Products.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..8fc86c72c28ddb8e88aa8b20c3af10b6d82743ff --- /dev/null +++ b/benchmark/0core/last_out/Handmade_Products.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e801ab5851760771a2ddba4969d8c60dd656f8e7e167d83fb3f19cd9c0790f6a +size 1108557 diff --git a/benchmark/0core/last_out/Handmade_Products.valid.csv b/benchmark/0core/last_out/Handmade_Products.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..61248ed45854c1457d757afd1dad7868278e5da8 --- /dev/null +++ b/benchmark/0core/last_out/Handmade_Products.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60dd48f3570f83bfcf1bd1a2988221658fa9398907ac0c4fd061b0e6d64cc00d +size 2921633 diff --git a/benchmark/0core/last_out/Health_and_Household.test.csv b/benchmark/0core/last_out/Health_and_Household.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..76581986d4be42bbd592953496e0cbeb83164c90 --- /dev/null +++ b/benchmark/0core/last_out/Health_and_Household.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c74b1b13bfaafd5fcfc57699d9f80ceb97afe3af324842ef620603eef03cfb81 +size 724815699 diff --git a/benchmark/0core/last_out/Health_and_Household.train.csv b/benchmark/0core/last_out/Health_and_Household.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..6e77a0f0fffbf9a7604c85de200d262fc8f0001f --- /dev/null +++ b/benchmark/0core/last_out/Health_and_Household.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:422f5685dc5b4bfa6abff350c92e6d07169fc49e08eaaaa863ccef91c0b2a3eb +size 477887177 diff --git a/benchmark/0core/last_out/Health_and_Household.valid.csv b/benchmark/0core/last_out/Health_and_Household.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..96c6476c5b2d3c1d2be05ad54f4f722891e67fe9 --- /dev/null +++ b/benchmark/0core/last_out/Health_and_Household.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5c6653e28b8b7069fe270715ddd7b77e9d1f7c69facf471674fdb7fe625547c +size 262972405 diff --git a/benchmark/0core/last_out/Health_and_Personal_Care.test.csv b/benchmark/0core/last_out/Health_and_Personal_Care.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..390cae9cd1cced05603083535a927b1af73c2b03 --- /dev/null +++ b/benchmark/0core/last_out/Health_and_Personal_Care.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9372fa918ef006f60f22aeade625d16ecdc4515bbdf1fdaeb987b00d1faa6299 +size 26776199 diff --git a/benchmark/0core/last_out/Health_and_Personal_Care.train.csv b/benchmark/0core/last_out/Health_and_Personal_Care.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..54c3bae2251c1b82ae040cec8d5e30c293731037 --- /dev/null +++ b/benchmark/0core/last_out/Health_and_Personal_Care.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef8ab47505481c1a1353810f0888f53188ff127bfdf5b090e0fcbb9c1f275849 +size 472761 diff --git a/benchmark/0core/last_out/Health_and_Personal_Care.valid.csv b/benchmark/0core/last_out/Health_and_Personal_Care.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..e7504007b2e3dea1a26f76870491ed363067787b --- /dev/null +++ b/benchmark/0core/last_out/Health_and_Personal_Care.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a582e4a9c2dc35b5426f0466f1a0d637dfec4273bae748840c0757baa3b28f4 +size 1067089 diff --git a/benchmark/0core/last_out/Home_and_Kitchen.test.csv b/benchmark/0core/last_out/Home_and_Kitchen.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..155cb79015fe533c7ca8793d41f9a8990e9dbd4f --- /dev/null +++ b/benchmark/0core/last_out/Home_and_Kitchen.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0e1956c6b2cf68b294da59f5758944e5888f4fe788ba3f6f3d9e6fff4353677 +size 1347678906 diff --git a/benchmark/0core/last_out/Home_and_Kitchen.train.csv b/benchmark/0core/last_out/Home_and_Kitchen.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..7e83938522524179b4ea1d5e7b6269a064b711be --- /dev/null +++ b/benchmark/0core/last_out/Home_and_Kitchen.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddf3b5e23f1294ea858eb285ee5ea6587b62214031643185078dc86e3708c900 +size 1840609018 diff --git a/benchmark/0core/last_out/Home_and_Kitchen.valid.csv b/benchmark/0core/last_out/Home_and_Kitchen.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..177723f9614371e6b6fd5f6f009d08fea364e620 --- /dev/null +++ b/benchmark/0core/last_out/Home_and_Kitchen.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:047f507379758d6805a78eb7ac07ef6e1eaa9152f1bd8980cae6a1cb4e175cea +size 675939882 diff --git a/benchmark/0core/last_out/Industrial_and_Scientific.test.csv b/benchmark/0core/last_out/Industrial_and_Scientific.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..2370f2237e1179a456a89a2d0173eff204097331 --- /dev/null +++ b/benchmark/0core/last_out/Industrial_and_Scientific.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5003b1cb29b8d5b26ba3535735f84445e91c265abbd9db11d8257a18866a74b0 +size 199261682 diff --git a/benchmark/0core/last_out/Industrial_and_Scientific.train.csv b/benchmark/0core/last_out/Industrial_and_Scientific.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..d6ba1be6d7c12abc257110330cf60d4e075ebe83 --- /dev/null +++ b/benchmark/0core/last_out/Industrial_and_Scientific.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44c312f73055a9e9f938e52f5c0ea0890a2bbf35e13cc9192ee530948761b093 +size 53438189 diff --git a/benchmark/0core/last_out/Industrial_and_Scientific.valid.csv b/benchmark/0core/last_out/Industrial_and_Scientific.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..4fe6366e698453fb159921e8ffd36f87afe36b34 --- /dev/null +++ b/benchmark/0core/last_out/Industrial_and_Scientific.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f60d89fcc0a1881ad107f41508e896dc22833f790137bab922e0dff5f658dd2f +size 44037981 diff --git a/benchmark/0core/last_out/Kindle_Store.test.csv b/benchmark/0core/last_out/Kindle_Store.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..9b115571b8c6f621af0cb826f020ac03fd70e93e --- /dev/null +++ b/benchmark/0core/last_out/Kindle_Store.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f1ac4c6851a92266a59e9122b00e0683c91798faad9addff7e038c16c80dd65 +size 327525635 diff --git a/benchmark/0core/last_out/Kindle_Store.train.csv b/benchmark/0core/last_out/Kindle_Store.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..9bb58aa2989fe1d6dbffaba105bb231508172fec --- /dev/null +++ b/benchmark/0core/last_out/Kindle_Store.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e2000b2c79051938c666832a1cd3bca2b4359877a6ab2902ba81cdde39706c1 +size 980791811 diff --git a/benchmark/0core/last_out/Kindle_Store.valid.csv b/benchmark/0core/last_out/Kindle_Store.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..3b05e0caa9ef5172595ded7add45c738fbce2d21 --- /dev/null +++ b/benchmark/0core/last_out/Kindle_Store.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:458433ca5028447f2d7a16f326fa15b1495d78e1f51554595bdaca92c61b60c7 +size 159332474 diff --git a/benchmark/0core/last_out/Magazine_Subscriptions.test.csv b/benchmark/0core/last_out/Magazine_Subscriptions.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..8beeb76e5cfff489e8390cab5f2e64d419b9a1da --- /dev/null +++ b/benchmark/0core/last_out/Magazine_Subscriptions.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:510ea5e91885720053aed0f4303f001a130c75502485c8a4704c206de63f1165 +size 3488391 diff --git a/benchmark/0core/last_out/Magazine_Subscriptions.train.csv b/benchmark/0core/last_out/Magazine_Subscriptions.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..3362ad2464d92ec6a4e4dde2e88be4829c401c75 --- /dev/null +++ b/benchmark/0core/last_out/Magazine_Subscriptions.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:043dabac9881251c9d6d7c88124573ea1cac896f91ec169da7b01dff6efada2a +size 230297 diff --git a/benchmark/0core/last_out/Magazine_Subscriptions.valid.csv b/benchmark/0core/last_out/Magazine_Subscriptions.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..175f3efd71353f0149d7e79f3ee583af33a1d549 --- /dev/null +++ b/benchmark/0core/last_out/Magazine_Subscriptions.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7444a844f359df9057d7abbf556c74466c35a10d0d23457d88833d858eb1512 +size 394901 diff --git a/benchmark/0core/last_out/Movies_and_TV.test.csv b/benchmark/0core/last_out/Movies_and_TV.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c1ecaca80761159232bc6dc5200a806819bec57b --- /dev/null +++ b/benchmark/0core/last_out/Movies_and_TV.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5d383fb246e02a12182f433b8494c96985fe5b5388e0afd9133cb973d3297e85 +size 377168971 diff --git a/benchmark/0core/last_out/Movies_and_TV.train.csv b/benchmark/0core/last_out/Movies_and_TV.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5a2def9ad6062069e2cc1716c39a3ca5c2b0ce7a --- /dev/null +++ b/benchmark/0core/last_out/Movies_and_TV.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d995caa27a855cf274b05e5c647a9384d2bbe140fdba10c76c2d6718317f3a29 +size 464072195 diff --git a/benchmark/0core/last_out/Movies_and_TV.valid.csv b/benchmark/0core/last_out/Movies_and_TV.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..010f7498af30567d90bdb9d2e49abd1b79e281b6 --- /dev/null +++ b/benchmark/0core/last_out/Movies_and_TV.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31a75744bd758fce3a767340c1891fbcc58bdb44af902b78a786e2610643b1dc +size 153851549 diff --git a/benchmark/0core/last_out/Musical_Instruments.test.csv b/benchmark/0core/last_out/Musical_Instruments.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..f3598619793aa9b461dc46d0e11974e9af5370e5 --- /dev/null +++ b/benchmark/0core/last_out/Musical_Instruments.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1159d00c58b4fafeb21684cd0d5c83b5580b43cd2e3424f2475f688238d9ea8d +size 102235476 diff --git a/benchmark/0core/last_out/Musical_Instruments.train.csv b/benchmark/0core/last_out/Musical_Instruments.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..19a95d3a359030b6e72fb943df617da41a583643 --- /dev/null +++ b/benchmark/0core/last_out/Musical_Instruments.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b7f0cc1a2f6d331c1422a962b48d0296162248ec47fbe637246673cae2d49b0 +size 44640591 diff --git a/benchmark/0core/last_out/Musical_Instruments.valid.csv b/benchmark/0core/last_out/Musical_Instruments.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..2e59cde73ba7f556360dabbeb511b756939f1548 --- /dev/null +++ b/benchmark/0core/last_out/Musical_Instruments.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8710a52d29a8bc8f109ca8095da1b608d2ac4eeb85786f771609b45560022cca +size 25707871 diff --git a/benchmark/0core/last_out/Office_Products.test.csv b/benchmark/0core/last_out/Office_Products.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..1e0d0647bfac2fe77d916ba377d6695ad8fdfe63 --- /dev/null +++ b/benchmark/0core/last_out/Office_Products.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a331022814a8ff0825debfc69e4eaf7fca64c7702fe80db9e9b8ad4b65fce73 +size 441561957 diff --git a/benchmark/0core/last_out/Office_Products.train.csv b/benchmark/0core/last_out/Office_Products.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..669c6c47da0eaa60b19b12f66a9a17f8a36f74dc --- /dev/null +++ b/benchmark/0core/last_out/Office_Products.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4d0897830dfc80c514075a0ffb1c610bb618274d6a9ae7008ac66eb7b1d9cb6 +size 165749131 diff --git a/benchmark/0core/last_out/Office_Products.valid.csv b/benchmark/0core/last_out/Office_Products.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..d08b69cb682491dbf5fdfbbe6616aeb409e82119 --- /dev/null +++ b/benchmark/0core/last_out/Office_Products.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:efa771e45a7055733e3b73046221a80690852ba6140bf738cd32101a370f3975 +size 128676912 diff --git a/benchmark/0core/last_out/Patio_Lawn_and_Garden.test.csv b/benchmark/0core/last_out/Patio_Lawn_and_Garden.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..8bcb1c11fac7640059229eb0804e1014999d0f14 --- /dev/null +++ b/benchmark/0core/last_out/Patio_Lawn_and_Garden.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44d853befae69c5d77e1867ccfac050776eafe180f04ddb0a79f65dece32c434 +size 498773663 diff --git a/benchmark/0core/last_out/Patio_Lawn_and_Garden.train.csv b/benchmark/0core/last_out/Patio_Lawn_and_Garden.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..2d9d7d2a2577007b5b87e938fd449bd4d48e723c --- /dev/null +++ b/benchmark/0core/last_out/Patio_Lawn_and_Garden.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:86ba3e2d0037192b9094cb78462fca1e5db7c826e715fdc1b7f6241cda63f786 +size 273541644 diff --git a/benchmark/0core/last_out/Patio_Lawn_and_Garden.valid.csv b/benchmark/0core/last_out/Patio_Lawn_and_Garden.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..672acf0d3e8ff91fcc37d7859b0524207b0af7e6 --- /dev/null +++ b/benchmark/0core/last_out/Patio_Lawn_and_Garden.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42d7a4392042f675d7923d2887a796720f4b76b0a916a6f76cc59589780532e1 +size 172648569 diff --git a/benchmark/0core/last_out/Pet_Supplies.test.csv b/benchmark/0core/last_out/Pet_Supplies.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..2591a836785c341bad19c5d87c5ce001b3e56c44 --- /dev/null +++ b/benchmark/0core/last_out/Pet_Supplies.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea24973d7f2be901fa2bbe4462bb4d5c521fbce5a558dadc70e8dd519e31a6d0 +size 451147761 diff --git a/benchmark/0core/last_out/Pet_Supplies.train.csv b/benchmark/0core/last_out/Pet_Supplies.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..76e36621fe54fd2f9111ab20e8e2d3d215464467 --- /dev/null +++ b/benchmark/0core/last_out/Pet_Supplies.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c520adb10c47269ac025137427e6d11ec71eea30372fb8cc6942c0530a42682 +size 339402401 diff --git a/benchmark/0core/last_out/Pet_Supplies.valid.csv b/benchmark/0core/last_out/Pet_Supplies.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..911951924a8c88cd71260a91284c1c88dee5b207 --- /dev/null +++ b/benchmark/0core/last_out/Pet_Supplies.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e16a54100ab7a12ec91d1c9f67d2e3d00b58846ed4d024cad01ef2c801710fc +size 172107043 diff --git a/benchmark/0core/last_out/Software.test.csv b/benchmark/0core/last_out/Software.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..258a09a261c951be316d63b70d293a6e5e28def3 --- /dev/null +++ b/benchmark/0core/last_out/Software.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8222e7793e3a3022a4cf522d23bb769b1ca229afa5df1f7626088a6a5f0ac457 +size 150188411 diff --git a/benchmark/0core/last_out/Software.train.csv b/benchmark/0core/last_out/Software.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..be8695373d2e67c80c3bb6ffc03fa4727b6cf644 --- /dev/null +++ b/benchmark/0core/last_out/Software.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68ecc3b2262dccd6402aa5d319ab2080331f1f8fa6e0f65481d5f5ac155c7316 +size 81906372 diff --git a/benchmark/0core/last_out/Software.valid.csv b/benchmark/0core/last_out/Software.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..fe190be601016826c5bd4f11646dd6f066721256 --- /dev/null +++ b/benchmark/0core/last_out/Software.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0a8f10ea80ea59ea53290ed39471b80dbb37e2b59f252651c17c45de77c21d0 +size 47956548 diff --git a/benchmark/0core/last_out/Sports_and_Outdoors.test.csv b/benchmark/0core/last_out/Sports_and_Outdoors.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..99e0647d7988a88db42eeacb1587aef78752d102 --- /dev/null +++ b/benchmark/0core/last_out/Sports_and_Outdoors.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2187e0d1fd816a4cc23540198c89c470667e342efab5b4fc919ae03d5a553677 +size 599206309 diff --git a/benchmark/0core/last_out/Sports_and_Outdoors.train.csv b/benchmark/0core/last_out/Sports_and_Outdoors.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..50c43c83c221c7fdde52a664ca7102d7723f4207 --- /dev/null +++ b/benchmark/0core/last_out/Sports_and_Outdoors.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6dfe391a5f1b4306284b375ff8ec4e8cffaea4f49e4f239f3da165d1cb02a0fd +size 320610441 diff --git a/benchmark/0core/last_out/Sports_and_Outdoors.valid.csv b/benchmark/0core/last_out/Sports_and_Outdoors.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..a04eb861d295394495ec14338148fdfd1756c819 --- /dev/null +++ b/benchmark/0core/last_out/Sports_and_Outdoors.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75085596769c6b6c0b9749117c4c892b4c5a1f5e343dea887db570442289abc1 +size 202459498 diff --git a/benchmark/0core/last_out/Subscription_Boxes.test.csv b/benchmark/0core/last_out/Subscription_Boxes.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..a108ae34df241f1462deb8604ec74c545e217a0d --- /dev/null +++ b/benchmark/0core/last_out/Subscription_Boxes.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6345425b31ff895727f21e6e1c6dbac8d10ae32811466bfd5f2bdff18b01a524 +size 883787 diff --git a/benchmark/0core/last_out/Subscription_Boxes.train.csv b/benchmark/0core/last_out/Subscription_Boxes.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..346062d38694f89abc661b6d77a12bdaa36f17c0 --- /dev/null +++ b/benchmark/0core/last_out/Subscription_Boxes.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4d4648acd70e7eeefb71e26a214085eb3fb581588290c5988317b1af65b2d4e +size 8389 diff --git a/benchmark/0core/last_out/Subscription_Boxes.valid.csv b/benchmark/0core/last_out/Subscription_Boxes.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..4807bc5567d35bc601f237025a6d9d21be7d070c --- /dev/null +++ b/benchmark/0core/last_out/Subscription_Boxes.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3926b33ec2a033cceb2f803154395892255d9578f6855723e2e60722ba4ba41c +size 33213 diff --git a/benchmark/0core/last_out/Tools_and_Home_Improvement.test.csv b/benchmark/0core/last_out/Tools_and_Home_Improvement.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..35ff4de6e5bc11d2cd673dbf00a3485ea9bee1ce --- /dev/null +++ b/benchmark/0core/last_out/Tools_and_Home_Improvement.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:992bec924701facafda0f2f627866a991e0b22c3af3edd4195ac38df47f75357 +size 710245165 diff --git a/benchmark/0core/last_out/Tools_and_Home_Improvement.train.csv b/benchmark/0core/last_out/Tools_and_Home_Improvement.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..d30d251626a7d1b9f40214aa387534d5c632da1b --- /dev/null +++ b/benchmark/0core/last_out/Tools_and_Home_Improvement.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07cd4256b2e0a0decb6817663ed32e284cf7f7ddeeef4fb0391e0ee0178d4362 +size 562521417 diff --git a/benchmark/0core/last_out/Tools_and_Home_Improvement.valid.csv b/benchmark/0core/last_out/Tools_and_Home_Improvement.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..68011121283a4e21a2b3e28594d340517fb9afd1 --- /dev/null +++ b/benchmark/0core/last_out/Tools_and_Home_Improvement.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f1dafc0ce82c53644f74d0595132f87461b07d12b4c4e8e67e676a96fb6e331 +size 272803891 diff --git a/benchmark/0core/last_out/Toys_and_Games.test.csv b/benchmark/0core/last_out/Toys_and_Games.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..5d271d05d0be85eede61866d26a68591f7df0a9e --- /dev/null +++ b/benchmark/0core/last_out/Toys_and_Games.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65f77da10e329a3ae828591a4044edf3b445ea90c9bab5f48ec8604d67205b1b +size 470740810 diff --git a/benchmark/0core/last_out/Toys_and_Games.train.csv b/benchmark/0core/last_out/Toys_and_Games.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..f70ae49b02c20e9fee04abe8dcff9c8244c6c1b1 --- /dev/null +++ b/benchmark/0core/last_out/Toys_and_Games.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44f72dd9be174f2fff421f5306b8e2182a8b4ead16ed03cde07d91654edc2168 +size 295939338 diff --git a/benchmark/0core/last_out/Toys_and_Games.valid.csv b/benchmark/0core/last_out/Toys_and_Games.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..c3c340d69eaa84747a6c837cbe576c4430ff0e8e --- /dev/null +++ b/benchmark/0core/last_out/Toys_and_Games.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:076238a16abee1650fc84ea7ae1104bddf07c82efb6b4fe196b318efb16dad6c +size 164376454 diff --git a/benchmark/0core/last_out/Unknown.test.csv b/benchmark/0core/last_out/Unknown.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..92c22281dacd3dfa0f3fac1578107d616b682ffc --- /dev/null +++ b/benchmark/0core/last_out/Unknown.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:477dd82afe49dc00b4fff1a27bce7a0c30ebf4db5a183bbfb0c9932cc05a4f56 +size 1337409987 diff --git a/benchmark/0core/last_out/Unknown.train.csv b/benchmark/0core/last_out/Unknown.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..8918dd586b4f26cab8bcb4591e52567092b5fb95 --- /dev/null +++ b/benchmark/0core/last_out/Unknown.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c510978002b126b2116074664b0a5fbf6cb23b6ad14a44a5df9b6f025093ac1f +size 1653853980 diff --git a/benchmark/0core/last_out/Unknown.valid.csv b/benchmark/0core/last_out/Unknown.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..e8186bdc4a123a9a6d73a521a2b853efe73a3df1 --- /dev/null +++ b/benchmark/0core/last_out/Unknown.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41fbaf12c3da336e7654d47802bdf842a67cd080a382973059d21573babdba86 +size 669889262 diff --git a/benchmark/0core/last_out/Video_Games.test.csv b/benchmark/0core/last_out/Video_Games.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..bb96f9c28f8970d2e302c8aa22b9e1694d9bf1f1 --- /dev/null +++ b/benchmark/0core/last_out/Video_Games.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7dc4ec7a5761ce1cff4eb92208369148f26e9a37d606d9c1ad364fe7816f7b15 +size 160462039 diff --git a/benchmark/0core/last_out/Video_Games.train.csv b/benchmark/0core/last_out/Video_Games.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..f20e297269fb47a7f784b53d1fed8558c7becbcf --- /dev/null +++ b/benchmark/0core/last_out/Video_Games.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f36ab2e4518ee7be148963a7424625ba098313831e05fc27b5d56ad567ccd7c +size 60609036 diff --git a/benchmark/0core/last_out/Video_Games.valid.csv b/benchmark/0core/last_out/Video_Games.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..5caa1689b445d98da2e9bd427b28ca590fe1c4e6 --- /dev/null +++ b/benchmark/0core/last_out/Video_Games.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c0ee171d6a824ba260ded6dc36a34be714f39b2fe18a2f9f1fb9ccb760706d1 +size 43138545 diff --git a/benchmark/0core/last_out_w_his/All_Beauty.test.csv b/benchmark/0core/last_out_w_his/All_Beauty.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..21e8c0a91a4176420f45c29c67c3def3dfa7958c --- /dev/null +++ b/benchmark/0core/last_out_w_his/All_Beauty.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdfb3bdb0480b5178ebed9c68329b3f78704ae1c2087f8f32741f3ebcd01d5bd +size 37925865 diff --git a/benchmark/0core/last_out_w_his/All_Beauty.train.csv b/benchmark/0core/last_out_w_his/All_Beauty.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..3679cb22569c30e749f9a23f132f1504ace7d627 --- /dev/null +++ b/benchmark/0core/last_out_w_his/All_Beauty.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9885adeae5555124dfb632999ed3e111d4e27672b31dbc52438984bf2931d9d +size 2433431 diff --git a/benchmark/0core/last_out_w_his/All_Beauty.valid.csv b/benchmark/0core/last_out_w_his/All_Beauty.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..64d78df4a6d64402255a7a32e559b23df36b808b --- /dev/null +++ b/benchmark/0core/last_out_w_his/All_Beauty.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b9de950fde67ebe9246687ba842cbdf4bc650d62d1e35817ee3ed855cf28b70 +size 2728851 diff --git a/benchmark/0core/last_out_w_his/Amazon_Fashion.test.csv b/benchmark/0core/last_out_w_his/Amazon_Fashion.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..38b73ddc8367b5e9335f17b1c9c5a76cd6d1e33c --- /dev/null +++ b/benchmark/0core/last_out_w_his/Amazon_Fashion.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7a7e26621ec61ef07b96d6459f4ca04088cdce748dfaba30faf54c7f0eb5eea +size 124640425 diff --git a/benchmark/0core/last_out_w_his/Amazon_Fashion.train.csv b/benchmark/0core/last_out_w_his/Amazon_Fashion.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..e2f5c26f924188bb595c4199a1058924f08889e6 --- /dev/null +++ b/benchmark/0core/last_out_w_his/Amazon_Fashion.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b754d59649727360d1378eb45915f93e516d17c38a2415bfffa551e947a94513 +size 14866925 diff --git a/benchmark/0core/last_out_w_his/Amazon_Fashion.valid.csv b/benchmark/0core/last_out_w_his/Amazon_Fashion.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..8d5b848be36b44e22cabd43a053269f2c482e0f0 --- /dev/null +++ b/benchmark/0core/last_out_w_his/Amazon_Fashion.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:252c4a80be5ef7ff4b66d7907be73e34977b6ca2f856b00362de3f9c61bc960b +size 18258103 diff --git a/benchmark/0core/last_out_w_his/Appliances.test.csv b/benchmark/0core/last_out_w_his/Appliances.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..46a759c4c8123c9d9deee4e5e964bc3e54ff9d98 --- /dev/null +++ b/benchmark/0core/last_out_w_his/Appliances.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6ed76bf5b29f8db3d13b669af059d388961b2ee0666704c43cfa46a4a514f14 +size 107175722 diff --git a/benchmark/0core/last_out_w_his/Appliances.train.csv b/benchmark/0core/last_out_w_his/Appliances.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..f59b98bfeac75774aecd420c657526e88d324253 --- /dev/null +++ b/benchmark/0core/last_out_w_his/Appliances.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:995fb8813e195be6bf4ac0e6515a978dc87e372cb047868efa140e7b227a8dca +size 7546385 diff --git a/benchmark/0core/last_out_w_his/Appliances.valid.csv b/benchmark/0core/last_out_w_his/Appliances.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..dc2c0fd6f5e2029605ffe2f9d1f41f99f67f97ca --- /dev/null +++ b/benchmark/0core/last_out_w_his/Appliances.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac48c5e4aba916d16a2793741f9477ecba914529daf0a52bb7d2d828f6c0c461 +size 15454370 diff --git a/benchmark/0core/last_out_w_his/Arts_Crafts_and_Sewing.test.csv b/benchmark/0core/last_out_w_his/Arts_Crafts_and_Sewing.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..91e7232e3cd0b10c3c6c94c439cba1ac82483feb --- /dev/null +++ b/benchmark/0core/last_out_w_his/Arts_Crafts_and_Sewing.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2b1133c31e9bd4fcfd00b77b937d5aad615ce1da721acd71fa3035bec94836f +size 317800182 diff --git a/benchmark/0core/last_out_w_his/Arts_Crafts_and_Sewing.train.csv b/benchmark/0core/last_out_w_his/Arts_Crafts_and_Sewing.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..116b9f7ae61d6d6766f5ec39f1076c72d6236002 --- /dev/null +++ b/benchmark/0core/last_out_w_his/Arts_Crafts_and_Sewing.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac8b752f9fdc5bea83d3fbd8a809ddbb4fac3436b2d3fd3056e0f5957550fae2 +size 385963496 diff --git a/benchmark/0core/last_out_w_his/Arts_Crafts_and_Sewing.valid.csv b/benchmark/0core/last_out_w_his/Arts_Crafts_and_Sewing.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..0888628e18572ef3cc325691d27944bf450f2b7d --- /dev/null +++ b/benchmark/0core/last_out_w_his/Arts_Crafts_and_Sewing.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:585c1546e16fce651ea3e1f3242b9b8ee6d2c703923559e7dfbc487a5fd542c8 +size 115189100 diff --git a/benchmark/0core/last_out_w_his/Automotive.test.csv b/benchmark/0core/last_out_w_his/Automotive.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..4e911862746fb30f41c459e033742baff9d74e11 --- /dev/null +++ b/benchmark/0core/last_out_w_his/Automotive.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0e895d5a21aa65fe6dd66b89cf3215103e0d825aac2f2a59600307da679335c +size 598302259 diff --git a/benchmark/0core/last_out_w_his/Automotive.train.csv b/benchmark/0core/last_out_w_his/Automotive.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..351d95b71d41e1f1567c7a849aded763100083eb --- /dev/null +++ b/benchmark/0core/last_out_w_his/Automotive.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6cced3014280455e18d79b9e43852804c3bba0428ae95e65a7c19a4762c6fd8 +size 1173851721 diff --git a/benchmark/0core/last_out_w_his/Automotive.valid.csv b/benchmark/0core/last_out_w_his/Automotive.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..9e5b11033271cdaac6416a735c82dc589c28d880 --- /dev/null +++ b/benchmark/0core/last_out_w_his/Automotive.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f5d7e8c4eb5912525fb6c3c092ecb9fc86585224d4ed1ccd896a83cc0baa9c0 +size 283353817 diff --git a/benchmark/0core/last_out_w_his/Baby_Products.test.csv b/benchmark/0core/last_out_w_his/Baby_Products.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..9ae16cbe0d06cfdb0fbf88ff4be9882924c3cd8d --- /dev/null +++ b/benchmark/0core/last_out_w_his/Baby_Products.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ee823c0d8b588e34dbe037285ab4823453d30e10774e889b3658ba091f09232 +size 227015146 diff --git a/benchmark/0core/last_out_w_his/Baby_Products.train.csv b/benchmark/0core/last_out_w_his/Baby_Products.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..ab3e51fb40f7d75416767f16ff0cb15859cd6057 --- /dev/null +++ b/benchmark/0core/last_out_w_his/Baby_Products.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0a2cf35605f84a8d18fb31d3012f0145a482927ee9cce17dbe8ca09a1e9df4c +size 183699206 diff --git a/benchmark/0core/last_out_w_his/Baby_Products.valid.csv b/benchmark/0core/last_out_w_his/Baby_Products.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..ccc56453ccee5da2837b3d8cbc4013905636a526 --- /dev/null +++ b/benchmark/0core/last_out_w_his/Baby_Products.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:368bbf640bdf8ef3767a4536ac7d2ab5b245e715a9baff5aefff9289becaf821 +size 76508603 diff --git a/benchmark/0core/last_out_w_his/Beauty_and_Personal_Care.test.csv b/benchmark/0core/last_out_w_his/Beauty_and_Personal_Care.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..76744c45e7eb5dfd512c294bc48baac19ac3f584 --- /dev/null +++ b/benchmark/0core/last_out_w_his/Beauty_and_Personal_Care.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:634180d1e9c97d3d24ef67d120f4987d0aaca770248eba2cabd7f4f1e5df1551 +size 798893514 diff --git a/benchmark/0core/last_out_w_his/Beauty_and_Personal_Care.train.csv b/benchmark/0core/last_out_w_his/Beauty_and_Personal_Care.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..9da332499e4b198a2c6f9728a3c44d376c41fb2c --- /dev/null +++ b/benchmark/0core/last_out_w_his/Beauty_and_Personal_Care.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e65836572b601ca235bb59a0d405366a1ca24f26af2d021742fa9af2118a6ea4 +size 1814333109 diff --git a/benchmark/0core/last_out_w_his/Beauty_and_Personal_Care.valid.csv b/benchmark/0core/last_out_w_his/Beauty_and_Personal_Care.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..284586e81a3dc82f91bc76bf6af968f861504f10 --- /dev/null +++ b/benchmark/0core/last_out_w_his/Beauty_and_Personal_Care.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9447920c38b16158de745bed31c9896710dd5ad831259d82682db0f76e6da02d +size 336678771 diff --git a/benchmark/0core/last_out_w_his/Books.test.csv b/benchmark/0core/last_out_w_his/Books.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..35530b95e48a537c9e980637b4f6447854c785fe --- /dev/null +++ b/benchmark/0core/last_out_w_his/Books.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69ae72c6bc54fa7f32edada877182fb9a43e63c6cb46d7ab43e4611b19cbb0e3 +size 810401207 diff --git a/benchmark/0core/last_out_w_his/Books.train.csv b/benchmark/0core/last_out_w_his/Books.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..0a7df082d155071cf508c459ac0b024f3febc7c7 --- /dev/null +++ b/benchmark/0core/last_out_w_his/Books.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b7bb664b506b7329c2a425639bd0f0478ce413af9f8dfd90a2acc7c8c42391a +size 6440764089 diff --git a/benchmark/0core/last_out_w_his/Books.valid.csv b/benchmark/0core/last_out_w_his/Books.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..e6bbc8fd9e5b634a25daf5afaff206953da5fa5e --- /dev/null +++ b/benchmark/0core/last_out_w_his/Books.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57c8fedeeaac0371146a897615f5105f2a59f4f2ea40c5ffbf84148df9cecd56 +size 412704545 diff --git a/benchmark/0core/last_out_w_his/CDs_and_Vinyl.test.csv b/benchmark/0core/last_out_w_his/CDs_and_Vinyl.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..7e30c96f506f9f2abc7f7451eb6024e94698043a --- /dev/null +++ b/benchmark/0core/last_out_w_his/CDs_and_Vinyl.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:572c31cdddd5ef910fe85e727441c0de41c56626f28d1bdcdd479a3410973a7c +size 135999559 diff --git a/benchmark/0core/last_out_w_his/CDs_and_Vinyl.train.csv b/benchmark/0core/last_out_w_his/CDs_and_Vinyl.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..24ade85a80a60e8deb97fe9dcb3df92daec24aa0 --- /dev/null +++ b/benchmark/0core/last_out_w_his/CDs_and_Vinyl.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef69d04d24fac03b0c5be1a1e0a2f6989128337dc9d7f98e0f810a9424f705ca +size 1140207077 diff --git a/benchmark/0core/last_out_w_his/CDs_and_Vinyl.valid.csv b/benchmark/0core/last_out_w_his/CDs_and_Vinyl.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..01cb10cf609f9840371ef1392fe7fd2e195b4afe --- /dev/null +++ b/benchmark/0core/last_out_w_his/CDs_and_Vinyl.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:093319f3778eeb17ec334f0ff0ce9907924a38be044704f51fa5161d3d14ddb7 +size 63948014 diff --git a/benchmark/0core/last_out_w_his/Cell_Phones_and_Accessories.test.csv b/benchmark/0core/last_out_w_his/Cell_Phones_and_Accessories.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..04bd61d683f633d8ff6ee64930d8337219468cca --- /dev/null +++ b/benchmark/0core/last_out_w_his/Cell_Phones_and_Accessories.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:260379729cc510fa9ebbbb8d89cf783dc24c347b72a0be4690a18fdaed21d46b +size 778817540 diff --git a/benchmark/0core/last_out_w_his/Cell_Phones_and_Accessories.train.csv b/benchmark/0core/last_out_w_his/Cell_Phones_and_Accessories.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..ee8fb1971bbecdfec6f160cedd981d7830fe9bb2 --- /dev/null +++ b/benchmark/0core/last_out_w_his/Cell_Phones_and_Accessories.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6de6995d1cd560a9c18de6fd5ea50879dce920e59c5d89fe0262416366a494b +size 434301116 diff --git a/benchmark/0core/last_out_w_his/Cell_Phones_and_Accessories.valid.csv b/benchmark/0core/last_out_w_his/Cell_Phones_and_Accessories.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..bc7875672c38ee2da0205f90448fe32ca5831c7c --- /dev/null +++ b/benchmark/0core/last_out_w_his/Cell_Phones_and_Accessories.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:275ca6122a96ae81c154323e4b0cf822548835742557627e2cbe883587b2c914 +size 291663656 diff --git a/benchmark/0core/last_out_w_his/Clothing_Shoes_and_Jewelry.test.csv b/benchmark/0core/last_out_w_his/Clothing_Shoes_and_Jewelry.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..4c822564af8915c7848cb0fef87bcc185cd0c659 --- /dev/null +++ b/benchmark/0core/last_out_w_his/Clothing_Shoes_and_Jewelry.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5271e09d6f7485a7203f0da2112d4ba2e57428ed88874e33765d83af2fbd8d6 +size 1788005421 diff --git a/benchmark/0core/last_out_w_his/Clothing_Shoes_and_Jewelry.train.csv b/benchmark/0core/last_out_w_his/Clothing_Shoes_and_Jewelry.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..6e09ddb8493ec3a55f0fecca78f7e61d3df6dae7 --- /dev/null +++ b/benchmark/0core/last_out_w_his/Clothing_Shoes_and_Jewelry.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc874431c3c90cbffc679abd674407578a91de220e35741e50632c2320680085 +size 5100145687 diff --git a/benchmark/0core/last_out_w_his/Clothing_Shoes_and_Jewelry.valid.csv b/benchmark/0core/last_out_w_his/Clothing_Shoes_and_Jewelry.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..0918051738dcba56702fa174f2f9f00c95d9dd72 --- /dev/null +++ b/benchmark/0core/last_out_w_his/Clothing_Shoes_and_Jewelry.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67d2888a1adbd4dcd8105feb0cbda83b69a63a27341cdc1f8e80a3eba54fe912 +size 1015400063 diff --git a/benchmark/0core/last_out_w_his/Digital_Music.test.csv b/benchmark/0core/last_out_w_his/Digital_Music.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..10bba9f031e0ff93d81f52bc5bddd70ae50f1a2a --- /dev/null +++ b/benchmark/0core/last_out_w_his/Digital_Music.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c75c0fa400a95ed326e8edf1d84a1565f59d106e0c4f68cb504de17ec8141d3d +size 6249504 diff --git a/benchmark/0core/last_out_w_his/Digital_Music.train.csv b/benchmark/0core/last_out_w_his/Digital_Music.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5f92def4f39bcadc29fa96115614d6b49c9f7f3d --- /dev/null +++ b/benchmark/0core/last_out_w_his/Digital_Music.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ce33ce47abfab94eaa984d83b1860ced105ec0ccc5989d13a4cc6cd3ff5c146 +size 3162198 diff --git a/benchmark/0core/last_out_w_his/Digital_Music.valid.csv b/benchmark/0core/last_out_w_his/Digital_Music.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..431087a61dbac9e268432e1cf3720ec5c3f30b9a --- /dev/null +++ b/benchmark/0core/last_out_w_his/Digital_Music.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:141de209afe6d25ac42c312997997e0970f7e0b2007c0cd750a969562738c996 +size 876238 diff --git a/benchmark/0core/last_out_w_his/Electronics.test.csv b/benchmark/0core/last_out_w_his/Electronics.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..d02db07827ba67552a3c81b0178c252316879114 --- /dev/null +++ b/benchmark/0core/last_out_w_his/Electronics.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31af74d2f78f02de0a15fca1984e02b1c8c0a118d4319cb56dea3bce80128de9 +size 1346921240 diff --git a/benchmark/0core/last_out_w_his/Electronics.train.csv b/benchmark/0core/last_out_w_his/Electronics.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5fcff72dda7dc73b4f38af2180d2df8376f30be0 --- /dev/null +++ b/benchmark/0core/last_out_w_his/Electronics.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c69483c41e3a33281a7c43a134a9a33958002814b72e7924eb67e78e2fa73fe6 +size 2368331746 diff --git a/benchmark/0core/last_out_w_his/Electronics.valid.csv b/benchmark/0core/last_out_w_his/Electronics.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..a10cc11e8cdee6d57e6e6546bbd586ccac81424b --- /dev/null +++ b/benchmark/0core/last_out_w_his/Electronics.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcc8c133c35c4501a1352534b1f7c9b13c1c3a190f545b7d9a8be7bbddf404b8 +size 647592041 diff --git a/benchmark/0core/last_out_w_his/Gift_Cards.test.csv b/benchmark/0core/last_out_w_his/Gift_Cards.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..2aec27e70751233e5787b8e362d0f62c9e3be684 --- /dev/null +++ b/benchmark/0core/last_out_w_his/Gift_Cards.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdda8b00ad2716dfb5cadbe98172d7e0a8dd158279b3355521dd34b7a4b557a5 +size 8008505 diff --git a/benchmark/0core/last_out_w_his/Gift_Cards.train.csv b/benchmark/0core/last_out_w_his/Gift_Cards.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..108a8711fce45c796b599f81da04ee3d5cbbb66c --- /dev/null +++ b/benchmark/0core/last_out_w_his/Gift_Cards.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7b1f1685e80726ad53a519892dc2576d98299e9e731a6eb3d9ca1c2d84a4d0f +size 422201 diff --git a/benchmark/0core/last_out_w_his/Gift_Cards.valid.csv b/benchmark/0core/last_out_w_his/Gift_Cards.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..da2d20fdf1be79cd7ad2432f5c6b63f4ead630c2 --- /dev/null +++ b/benchmark/0core/last_out_w_his/Gift_Cards.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfb22bad0d04f67ed84843a673ef5755a8d07012c90ab625d62921ee0b22fbd7 +size 734111 diff --git a/benchmark/0core/last_out_w_his/Grocery_and_Gourmet_Food.test.csv b/benchmark/0core/last_out_w_his/Grocery_and_Gourmet_Food.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..04e92781ef010bda059996ab85b8bdba69bfc9c9 --- /dev/null +++ b/benchmark/0core/last_out_w_his/Grocery_and_Gourmet_Food.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd418df7c5ee34cc81eab02e456f9b77948f4406298f103617f879497daaf9b4 +size 490190349 diff --git a/benchmark/0core/last_out_w_his/Grocery_and_Gourmet_Food.train.csv b/benchmark/0core/last_out_w_his/Grocery_and_Gourmet_Food.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..d9f98dbf05cfeb629bb3a7c02efeef477cea8971 --- /dev/null +++ b/benchmark/0core/last_out_w_his/Grocery_and_Gourmet_Food.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fded44a92d9aa1a4175d9e8915f6faa9a550244a14282d57003635da05c771eb +size 875086387 diff --git a/benchmark/0core/last_out_w_his/Grocery_and_Gourmet_Food.valid.csv b/benchmark/0core/last_out_w_his/Grocery_and_Gourmet_Food.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..2c02e26ff2559b7df3960f91eccae0239c294dc3 --- /dev/null +++ b/benchmark/0core/last_out_w_his/Grocery_and_Gourmet_Food.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bac8583ea81de3ce5e96a61f0c3b44db0514b6715029dd48b09f5b5a6565eb1b +size 189304939 diff --git a/benchmark/0core/last_out_w_his/Handmade_Products.test.csv b/benchmark/0core/last_out_w_his/Handmade_Products.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..9492f0e03463bf0a1782c311de5c90d54dfac8e7 --- /dev/null +++ b/benchmark/0core/last_out_w_his/Handmade_Products.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9b126f0ece180796af9a1fe68642081b8915a7d3cafbfdceeed5b43e4b312ab +size 35324193 diff --git a/benchmark/0core/last_out_w_his/Handmade_Products.train.csv b/benchmark/0core/last_out_w_his/Handmade_Products.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..9233a896d7c891d4e0f1aa60ecb3bcb5f6a5a2fc --- /dev/null +++ b/benchmark/0core/last_out_w_his/Handmade_Products.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ee6d36dfaf64760db5da88b984e7566a7e2bf481f2e27312f012173851a62ca +size 1395238 diff --git a/benchmark/0core/last_out_w_his/Handmade_Products.valid.csv b/benchmark/0core/last_out_w_his/Handmade_Products.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..b13cc6556f1e14df0b184fe73e5347de7cbdf868 --- /dev/null +++ b/benchmark/0core/last_out_w_his/Handmade_Products.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73f40a1e478808e125689ce91852c8652e7c9bb0db3d0b339e87b841f98630cc +size 3171408 diff --git a/benchmark/0core/last_out_w_his/Health_and_Household.test.csv b/benchmark/0core/last_out_w_his/Health_and_Household.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..75cabdf4dfe196c2e75bdd69f334fa674ad0df12 --- /dev/null +++ b/benchmark/0core/last_out_w_his/Health_and_Household.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d65958e064e91ae8b5c2ce3fff528910a15b8805f7d4a687ccafe40fcc8c6ddd +size 873281281 diff --git a/benchmark/0core/last_out_w_his/Health_and_Household.train.csv b/benchmark/0core/last_out_w_his/Health_and_Household.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..c7c432aad66fe2d6578a07a6bf59595f0a6f56c8 --- /dev/null +++ b/benchmark/0core/last_out_w_his/Health_and_Household.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4df2176e1efe6fae513cba865c4a537c53c0c782c732d912d78ce34bd24ec4fd +size 1472432267 diff --git a/benchmark/0core/last_out_w_his/Health_and_Household.valid.csv b/benchmark/0core/last_out_w_his/Health_and_Household.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..cbe1c1a16db5f0b886d9df0a3488c488f6faa31f --- /dev/null +++ b/benchmark/0core/last_out_w_his/Health_and_Household.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a55f55283e6a472a860fed9248d698765bb25cecb357741b211978b02b750991 +size 355848987 diff --git a/benchmark/0core/last_out_w_his/Health_and_Personal_Care.test.csv b/benchmark/0core/last_out_w_his/Health_and_Personal_Care.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..d1bbf60e01374399c106c28c1ae978517d96270d --- /dev/null +++ b/benchmark/0core/last_out_w_his/Health_and_Personal_Care.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44a5c0bd23e3d6e13d6b250b47c038128669111a7ae887395cdc90f5d8435e28 +size 27511319 diff --git a/benchmark/0core/last_out_w_his/Health_and_Personal_Care.train.csv b/benchmark/0core/last_out_w_his/Health_and_Personal_Care.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..7b74afaaae9b77dbde46e37f2da8b7d500eef8cc --- /dev/null +++ b/benchmark/0core/last_out_w_his/Health_and_Personal_Care.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6256836cf7ddcbd97c6ada94a9061e4c7ef53c3429738446eebd667519423e9a +size 1033892 diff --git a/benchmark/0core/last_out_w_his/Health_and_Personal_Care.valid.csv b/benchmark/0core/last_out_w_his/Health_and_Personal_Care.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..ffa10ed69803e4909a16fad4a502a48b12e89d00 --- /dev/null +++ b/benchmark/0core/last_out_w_his/Health_and_Personal_Care.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:270e497e2b266c599bc1ee08c1fb8a81298b4be61a3df6c868dd9027b25bc292 +size 1172116 diff --git a/benchmark/0core/last_out_w_his/Home_and_Kitchen.test.csv b/benchmark/0core/last_out_w_his/Home_and_Kitchen.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..fe7c99eb94a1d8c2f57cb97d56d23c2a45f0ff5e --- /dev/null +++ b/benchmark/0core/last_out_w_his/Home_and_Kitchen.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e41ae3c1877917c1a3f79a6fe4a3bbb1d62ddfac33634312c60c67d4ce11043d +size 1836528936 diff --git a/benchmark/0core/last_out_w_his/Home_and_Kitchen.train.csv b/benchmark/0core/last_out_w_his/Home_and_Kitchen.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..f5a74b236f16551452b87151b8bf2240d527990b --- /dev/null +++ b/benchmark/0core/last_out_w_his/Home_and_Kitchen.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc8bab515adb97a0fde067d75ed671b74216f53a79b9802c5a2dfbce039047fb +size 5113058017 diff --git a/benchmark/0core/last_out_w_his/Home_and_Kitchen.valid.csv b/benchmark/0core/last_out_w_his/Home_and_Kitchen.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..a71feac4fe0595f45c6b64b0c6d87886b7847df9 --- /dev/null +++ b/benchmark/0core/last_out_w_his/Home_and_Kitchen.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:895d188a129a22578f71d5645337860278e77a8bc8c31f670f71e7ce9cbc42a9 +size 1029622618 diff --git a/benchmark/0core/last_out_w_his/Industrial_and_Scientific.test.csv b/benchmark/0core/last_out_w_his/Industrial_and_Scientific.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..b0cacdd970f62a072e8856846ed783d67d1543c2 --- /dev/null +++ b/benchmark/0core/last_out_w_his/Industrial_and_Scientific.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe1dc6f0b43ae3cab4a96ade66d87f8504aa38feba5b9c6670a1f1b1b0133a6f +size 220424132 diff --git a/benchmark/0core/last_out_w_his/Industrial_and_Scientific.train.csv b/benchmark/0core/last_out_w_his/Industrial_and_Scientific.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..93814a00f842d0f9afb3c17e5460b44ecb2edaec --- /dev/null +++ b/benchmark/0core/last_out_w_his/Industrial_and_Scientific.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc512365d15497b319ad65451fbb7e8636eb9019b06c2796a33a8816910854c8 +size 99303905 diff --git a/benchmark/0core/last_out_w_his/Industrial_and_Scientific.valid.csv b/benchmark/0core/last_out_w_his/Industrial_and_Scientific.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..995f351992127ad758a3ea313dfcacffebf90b71 --- /dev/null +++ b/benchmark/0core/last_out_w_his/Industrial_and_Scientific.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5db26d2aa5c929af4075bd409bfe54e29ca93d4a416a4973b88732d20e42adfa +size 54622585 diff --git a/benchmark/0core/last_out_w_his/Kindle_Store.test.csv b/benchmark/0core/last_out_w_his/Kindle_Store.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..6b98ccae74ae96fa5685702e09ff5c71b419e904 --- /dev/null +++ b/benchmark/0core/last_out_w_his/Kindle_Store.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2067e82f4d4ab5be1c96e96393e6b22a6d64f6328af197128508877688b4b6f +size 546633979 diff --git a/benchmark/0core/last_out_w_his/Kindle_Store.train.csv b/benchmark/0core/last_out_w_his/Kindle_Store.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..fdd34821e4e97cf1ba237f0171a9afe90ca89dd1 --- /dev/null +++ b/benchmark/0core/last_out_w_his/Kindle_Store.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6847a970277a156b1b1b486ecb0a133cd9b04b1bd59ec316bf2becc8928e9430 +size 13411903205 diff --git a/benchmark/0core/last_out_w_his/Kindle_Store.valid.csv b/benchmark/0core/last_out_w_his/Kindle_Store.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..15f8b1667b8f2d880869ae298f1f8592ee07bd91 --- /dev/null +++ b/benchmark/0core/last_out_w_his/Kindle_Store.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:32cdf34009745b21325756b2290067bf175f5d4b0ff1389c5b647030f1f0b0c8 +size 346296656 diff --git a/benchmark/0core/last_out_w_his/Magazine_Subscriptions.test.csv b/benchmark/0core/last_out_w_his/Magazine_Subscriptions.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..08f8e5e3b9f012955669bbff47a89074cd0c63b6 --- /dev/null +++ b/benchmark/0core/last_out_w_his/Magazine_Subscriptions.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:154f9f27b2d5968927ac627812833cefb48eb811189ab5c3d394e6889d5f1743 +size 3660293 diff --git a/benchmark/0core/last_out_w_his/Magazine_Subscriptions.train.csv b/benchmark/0core/last_out_w_his/Magazine_Subscriptions.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..7e7aad870b3c91f991dd39b3907e3207b899935e --- /dev/null +++ b/benchmark/0core/last_out_w_his/Magazine_Subscriptions.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bfd4b6a6c6bf035db6d53a7b6cd9e1397e38de78faa21abeaf5a6f741fc1039 +size 319601 diff --git a/benchmark/0core/last_out_w_his/Magazine_Subscriptions.valid.csv b/benchmark/0core/last_out_w_his/Magazine_Subscriptions.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..b12a2495376292fd686b03183bb3fe2b59e0f046 --- /dev/null +++ b/benchmark/0core/last_out_w_his/Magazine_Subscriptions.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e24f9d78a468268e76f1ff48d7f2265e69d55e04a91a1ef0cf04ef170cea354 +size 443442 diff --git a/benchmark/0core/last_out_w_his/Movies_and_TV.test.csv b/benchmark/0core/last_out_w_his/Movies_and_TV.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..d7eee88bb0d78e59406dea4b9700edf2d4b98172 --- /dev/null +++ b/benchmark/0core/last_out_w_his/Movies_and_TV.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:326a06aa4265e25fab35bf7d21873e8d6c1ba661e0e47cbea6c3ea3f6d884894 +size 498225592 diff --git a/benchmark/0core/last_out_w_his/Movies_and_TV.train.csv b/benchmark/0core/last_out_w_his/Movies_and_TV.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..54c3f3587f90d3f381cfd6c5705e696e6abdfbc0 --- /dev/null +++ b/benchmark/0core/last_out_w_his/Movies_and_TV.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6de0b14bca6d7df7c9b57e45837fa07a848dd0754969f55036a2d2e707082f1e +size 2613824714 diff --git a/benchmark/0core/last_out_w_his/Movies_and_TV.valid.csv b/benchmark/0core/last_out_w_his/Movies_and_TV.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..07b4408ce766426c96a76e90ee214a74b70b68fe --- /dev/null +++ b/benchmark/0core/last_out_w_his/Movies_and_TV.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dcb80d6ecb8ee50b71b76513ddbd27d9ed4014660540fa730cdff2ad95aec456 +size 243013319 diff --git a/benchmark/0core/last_out_w_his/Musical_Instruments.test.csv b/benchmark/0core/last_out_w_his/Musical_Instruments.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..15ece0b3671c00c0cb2fb80aa79c88fdac4fede8 --- /dev/null +++ b/benchmark/0core/last_out_w_his/Musical_Instruments.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:762689c31bffc1168a55331b6049a3f52c1aee374f57ce03fc40a391f6fed021 +size 116896518 diff --git a/benchmark/0core/last_out_w_his/Musical_Instruments.train.csv b/benchmark/0core/last_out_w_his/Musical_Instruments.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..6e9537231a12862ae5a309d6600f1ac88ac90cb8 --- /dev/null +++ b/benchmark/0core/last_out_w_his/Musical_Instruments.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:965cdbe99ebd4f0b63465e89ebf9ac90a018cbb7f9d945752ae4627ea075caef +size 98076691 diff --git a/benchmark/0core/last_out_w_his/Musical_Instruments.valid.csv b/benchmark/0core/last_out_w_his/Musical_Instruments.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..c8b14780cd32cb26dbe5adb952c28bf56f1a78b7 --- /dev/null +++ b/benchmark/0core/last_out_w_his/Musical_Instruments.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2631ff036de77b7e731d9540a3ec0b75d4557ae3d4d99cb4818245989dc9384 +size 34408106 diff --git a/benchmark/0core/last_out_w_his/Office_Products.test.csv b/benchmark/0core/last_out_w_his/Office_Products.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c56df7e7ccfcf30ef76a8ae9808c43d5dd4a6183 --- /dev/null +++ b/benchmark/0core/last_out_w_his/Office_Products.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75e848c4dbb61f6877ec471cf9fa477f2d8e5ef221025bb7e2870fddc82664a7 +size 502794652 diff --git a/benchmark/0core/last_out_w_his/Office_Products.train.csv b/benchmark/0core/last_out_w_his/Office_Products.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..48821aab41f5a2a3f1c4211bcc23b69b9f05ba94 --- /dev/null +++ b/benchmark/0core/last_out_w_his/Office_Products.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3064c89e664dab843afe4efe1d211ca85e494c92382febd97201ae12cea27881 +size 312809249 diff --git a/benchmark/0core/last_out_w_his/Office_Products.valid.csv b/benchmark/0core/last_out_w_his/Office_Products.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..9d8b32ddd5557ab93ae2cd734876df761216a6dd --- /dev/null +++ b/benchmark/0core/last_out_w_his/Office_Products.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d741ad44ccafa7dd3d252856b2645152df13a610e2b7b119cf615707f65ac968 +size 161351710 diff --git a/benchmark/0core/last_out_w_his/Patio_Lawn_and_Garden.test.csv b/benchmark/0core/last_out_w_his/Patio_Lawn_and_Garden.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..604142b07eb26a7754f83b62e5d4b24fd9aa3edb --- /dev/null +++ b/benchmark/0core/last_out_w_his/Patio_Lawn_and_Garden.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ec7cfe5ae7191f9fd0a7bc5c06df93483ed2c32aa4d42f8fd494077b17fd37f +size 589016903 diff --git a/benchmark/0core/last_out_w_his/Patio_Lawn_and_Garden.train.csv b/benchmark/0core/last_out_w_his/Patio_Lawn_and_Garden.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..18c10fd5159c0b0be82f54f1c3297a5a8c028b5d --- /dev/null +++ b/benchmark/0core/last_out_w_his/Patio_Lawn_and_Garden.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88318eb9de5e041affbe4c36e33d3a8c7e8cc7ea4aff0ac13aafd24d67747c40 +size 537621990 diff --git a/benchmark/0core/last_out_w_his/Patio_Lawn_and_Garden.valid.csv b/benchmark/0core/last_out_w_his/Patio_Lawn_and_Garden.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..2cc5ea672837948b0bd8bdbb1bcf9afd3341214e --- /dev/null +++ b/benchmark/0core/last_out_w_his/Patio_Lawn_and_Garden.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf887da6a51e273478c1493d384cf7ecbe75304565410016d15439db0fa6f5ec +size 226045156 diff --git a/benchmark/0core/last_out_w_his/Pet_Supplies.test.csv b/benchmark/0core/last_out_w_his/Pet_Supplies.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..f98dff06a47342d262176b89735ab8b9056fe41b --- /dev/null +++ b/benchmark/0core/last_out_w_his/Pet_Supplies.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c329d89b17302c7923fa7d30bb9d2d133d204955eaed246bcb963d3bb0d4072 +size 552967827 diff --git a/benchmark/0core/last_out_w_his/Pet_Supplies.train.csv b/benchmark/0core/last_out_w_his/Pet_Supplies.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..e8884195abf81f7fd61ca0bb2074c7e442aa4544 --- /dev/null +++ b/benchmark/0core/last_out_w_his/Pet_Supplies.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b7d96cd7ec68ece5d1fa350d916a83dd4a0cc706b9d17f2e00f4ceceeb4eb99 +size 732430082 diff --git a/benchmark/0core/last_out_w_his/Pet_Supplies.valid.csv b/benchmark/0core/last_out_w_his/Pet_Supplies.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..0090d8142a19da3d840bfc6fca5899361704ed53 --- /dev/null +++ b/benchmark/0core/last_out_w_his/Pet_Supplies.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9c998b28770b5f4d909f5ee30db992330b71c0e46e91f196e96a1e7a75783c1 +size 237864837 diff --git a/benchmark/0core/last_out_w_his/Software.test.csv b/benchmark/0core/last_out_w_his/Software.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..2af298e62db6041cb93cb4a2e040fb17c58b8ee9 --- /dev/null +++ b/benchmark/0core/last_out_w_his/Software.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16ac241ac7cda4e3e610d2e70709d3d0786b87c15f3d6696aa89a53a8e8c7b49 +size 176580201 diff --git a/benchmark/0core/last_out_w_his/Software.train.csv b/benchmark/0core/last_out_w_his/Software.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..ff86f47a4682c54951c2f49febb94a346bf698c6 --- /dev/null +++ b/benchmark/0core/last_out_w_his/Software.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c265685ba91fc4ca25bab4c3fbc6b2aa88a4ed19aba65dd89a458cc94cf67c17 +size 168345032 diff --git a/benchmark/0core/last_out_w_his/Software.valid.csv b/benchmark/0core/last_out_w_his/Software.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..aa61891d601ae41d2ec1c78be314ad1ecb222a76 --- /dev/null +++ b/benchmark/0core/last_out_w_his/Software.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77ce41b6b241e611075e40d4860e6a89aa2ee67eb66a024c8547a6a059526144 +size 63907775 diff --git a/benchmark/0core/last_out_w_his/Sports_and_Outdoors.test.csv b/benchmark/0core/last_out_w_his/Sports_and_Outdoors.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..a49dde01b1cd0ea16fd629843c7baa5f436c613c --- /dev/null +++ b/benchmark/0core/last_out_w_his/Sports_and_Outdoors.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a23164b2567b628062d89471f053c1aea2504c166ae336382ebfd3feaff90e6 +size 705247662 diff --git a/benchmark/0core/last_out_w_his/Sports_and_Outdoors.train.csv b/benchmark/0core/last_out_w_his/Sports_and_Outdoors.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..fbd950bf311c1a00fa5d604226e0eaba25f74ffe --- /dev/null +++ b/benchmark/0core/last_out_w_his/Sports_and_Outdoors.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b698d1834a076b9c76f2fb9ee9b612466dd37ea8749729ae14a1cd2691e1875 +size 659224865 diff --git a/benchmark/0core/last_out_w_his/Sports_and_Outdoors.valid.csv b/benchmark/0core/last_out_w_his/Sports_and_Outdoors.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..a120d144db3119f86e0b11e379cc970b54acdb83 --- /dev/null +++ b/benchmark/0core/last_out_w_his/Sports_and_Outdoors.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cf4ad18d6c76ba8cc4114e408c3e2c3f59602de1b2539e573a02685ab03bca9 +size 265081809 diff --git a/benchmark/0core/last_out_w_his/Subscription_Boxes.test.csv b/benchmark/0core/last_out_w_his/Subscription_Boxes.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..8050016f1518327fa0642f0cbd569ca6587632b0 --- /dev/null +++ b/benchmark/0core/last_out_w_his/Subscription_Boxes.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a55aeb5f1eb147a5a2470c91521688b14a726e9fd72b61f39bb2e5fb5a044a7 +size 906336 diff --git a/benchmark/0core/last_out_w_his/Subscription_Boxes.train.csv b/benchmark/0core/last_out_w_his/Subscription_Boxes.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..c33b504d574f5c7908b81e6eebcb50a84da6d053 --- /dev/null +++ b/benchmark/0core/last_out_w_his/Subscription_Boxes.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2f4a772bb862d84785d6af2982910d9eb302b0e266419f9ee26b12e7ef9c9c0 +size 9641 diff --git a/benchmark/0core/last_out_w_his/Subscription_Boxes.valid.csv b/benchmark/0core/last_out_w_his/Subscription_Boxes.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..4f45e37aad2b2d9b5e1a46c3da6d517552734790 --- /dev/null +++ b/benchmark/0core/last_out_w_his/Subscription_Boxes.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59b7b978e137aa443b40fc0a7a2729eee5ec7668a363de49fb8234072570d413 +size 35277 diff --git a/benchmark/0core/last_out_w_his/Tools_and_Home_Improvement.test.csv b/benchmark/0core/last_out_w_his/Tools_and_Home_Improvement.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..d71103b65158c7d1a2075fa13bd180f96531c5ab --- /dev/null +++ b/benchmark/0core/last_out_w_his/Tools_and_Home_Improvement.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:644b4a33c5fc4c18be7593771b905f4ca4e18a8a19e286f777641e9ad69dd633 +size 876207674 diff --git a/benchmark/0core/last_out_w_his/Tools_and_Home_Improvement.train.csv b/benchmark/0core/last_out_w_his/Tools_and_Home_Improvement.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..c1175c295d6c54e238fc56d56ad6dff4d13c3468 --- /dev/null +++ b/benchmark/0core/last_out_w_his/Tools_and_Home_Improvement.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ed9d6f05c5851afe21a5bfea28df45e7c6da03db85af558dbfff1959fa76b0b +size 1397507994 diff --git a/benchmark/0core/last_out_w_his/Tools_and_Home_Improvement.valid.csv b/benchmark/0core/last_out_w_his/Tools_and_Home_Improvement.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..3f7cfae00547017eb687813f463985b02e6114bb --- /dev/null +++ b/benchmark/0core/last_out_w_his/Tools_and_Home_Improvement.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57a502cfea6da2c275f025b5419372c98bb2faccbca4259209b01744f4440cdd +size 381717050 diff --git a/benchmark/0core/last_out_w_his/Toys_and_Games.test.csv b/benchmark/0core/last_out_w_his/Toys_and_Games.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..dd9778f36dc4197b33f878897e7743793f532469 --- /dev/null +++ b/benchmark/0core/last_out_w_his/Toys_and_Games.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2290510e0a9982d62c148e3290fec992a48f2a7f1ec8bf339991f05724d5facc +size 563321322 diff --git a/benchmark/0core/last_out_w_his/Toys_and_Games.train.csv b/benchmark/0core/last_out_w_his/Toys_and_Games.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..043e9234a24b7b326db379050f89243188cfa2c7 --- /dev/null +++ b/benchmark/0core/last_out_w_his/Toys_and_Games.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a0ad246563520603fd890f7524ee0b46803b4e3747d8a8394bf028fcf1e96b7 +size 781021068 diff --git a/benchmark/0core/last_out_w_his/Toys_and_Games.valid.csv b/benchmark/0core/last_out_w_his/Toys_and_Games.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..835c7cf190997a7cad23214b7d3a339d311f3524 --- /dev/null +++ b/benchmark/0core/last_out_w_his/Toys_and_Games.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42fcda61e94d872c74b14a02b38e3f305ae2fadf86d32fe921e7a3de9ad375b7 +size 221915602 diff --git a/benchmark/0core/last_out_w_his/Unknown.test.csv b/benchmark/0core/last_out_w_his/Unknown.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..48f6ab11cc4ee329bafd120effe53db24717ad63 --- /dev/null +++ b/benchmark/0core/last_out_w_his/Unknown.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:764cefdeb4e058f91544c764a28204964f00979cd7a14652f016bfa2acefa7da +size 1789617686 diff --git a/benchmark/0core/last_out_w_his/Unknown.train.csv b/benchmark/0core/last_out_w_his/Unknown.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..ea1873a657e8c2d0bea9f2367eea8928b9f223b0 --- /dev/null +++ b/benchmark/0core/last_out_w_his/Unknown.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:331f393fd40e50f2980a9513c3055bf22343a7d9f197d50111a214333af23277 +size 4787623105 diff --git a/benchmark/0core/last_out_w_his/Unknown.valid.csv b/benchmark/0core/last_out_w_his/Unknown.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..292d5f47a354fc4bb8b3a9b5936bf43baabf80ce --- /dev/null +++ b/benchmark/0core/last_out_w_his/Unknown.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e3f7e8f26f43a1697e0962d507d3453cc3d391347c0a12224499599d03b58e11 +size 988323732 diff --git a/benchmark/0core/last_out_w_his/Video_Games.test.csv b/benchmark/0core/last_out_w_his/Video_Games.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c5a2eea0f446ab825239da67c3e28fa32f8c843d --- /dev/null +++ b/benchmark/0core/last_out_w_his/Video_Games.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:548db7247fb151eb27c8edd0b2f3dab04c742c5fe6da0ce7fee186c0a423fad9 +size 182162191 diff --git a/benchmark/0core/last_out_w_his/Video_Games.train.csv b/benchmark/0core/last_out_w_his/Video_Games.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..9b2e27530a83c7af72470b84e5407092436e7a7e --- /dev/null +++ b/benchmark/0core/last_out_w_his/Video_Games.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:382101586ce75e50f7768a230edd0638b89472d16b5032f9deafdc85aeab0852 +size 128450240 diff --git a/benchmark/0core/last_out_w_his/Video_Games.valid.csv b/benchmark/0core/last_out_w_his/Video_Games.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..018c58e13e37dcab878689e460359291a0e6f6ee --- /dev/null +++ b/benchmark/0core/last_out_w_his/Video_Games.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:332812bb3bfe40110e7088b21b145e01d29c759dada7723230d16ffff861cae3 +size 55048158 diff --git a/benchmark/0core/rating_only/All_Beauty.csv b/benchmark/0core/rating_only/All_Beauty.csv new file mode 100644 index 0000000000000000000000000000000000000000..c19de70a4b17b0bcdc029da06e0b45a9b0270662 --- /dev/null +++ b/benchmark/0core/rating_only/All_Beauty.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b3cdf7687851496e194cc3a275b1f89f19cd24d7e8b9860a4676ff9b8f795fb +size 40249617 diff --git a/benchmark/0core/rating_only/Amazon_Fashion.csv b/benchmark/0core/rating_only/Amazon_Fashion.csv new file mode 100644 index 0000000000000000000000000000000000000000..7972c0f4b3a88c69e75631d520e05fc9bd3fea16 --- /dev/null +++ b/benchmark/0core/rating_only/Amazon_Fashion.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:083d36187a84a0d1882e66afd0d446898fe43075f51446d9e001432d931d3b37 +size 143516279 diff --git a/benchmark/0core/rating_only/Appliances.csv b/benchmark/0core/rating_only/Appliances.csv new file mode 100644 index 0000000000000000000000000000000000000000..0f1ba4b8cb721364d2ad612ed2566735fd2c2647 --- /dev/null +++ b/benchmark/0core/rating_only/Appliances.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14b14b7c6d916fe09db8472cbbb4358c139b04b6eb622303b60b76942d3097e5 +size 122031836 diff --git a/benchmark/0core/rating_only/Arts_Crafts_and_Sewing.csv b/benchmark/0core/rating_only/Arts_Crafts_and_Sewing.csv new file mode 100644 index 0000000000000000000000000000000000000000..43f097cbb7317b5694339f14bad97d9a24580ae5 --- /dev/null +++ b/benchmark/0core/rating_only/Arts_Crafts_and_Sewing.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c83c878bb720d0851b9520e456a3884ca04684f7577cbde05cd3d4d310d7d8d +size 512822964 diff --git a/benchmark/0core/rating_only/Automotive.csv b/benchmark/0core/rating_only/Automotive.csv new file mode 100644 index 0000000000000000000000000000000000000000..151e34035e89289b75a3431f04698f3055dfae77 --- /dev/null +++ b/benchmark/0core/rating_only/Automotive.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6421799eb234b850737259f5e582db1240218d3dbf360631cc768c8ef19c667f +size 1142188557 diff --git a/benchmark/0core/rating_only/Baby_Products.csv b/benchmark/0core/rating_only/Baby_Products.csv new file mode 100644 index 0000000000000000000000000000000000000000..3ec4011251701018e6a211e6f6a14569a85838bd --- /dev/null +++ b/benchmark/0core/rating_only/Baby_Products.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f335a5ade29a7dfc808b7bca7a5263aa2ad08fbc3ab2950f0962292c324e8a4 +size 345334991 diff --git a/benchmark/0core/rating_only/Beauty_and_Personal_Care.csv b/benchmark/0core/rating_only/Beauty_and_Personal_Care.csv new file mode 100644 index 0000000000000000000000000000000000000000..1664b17e67407dc9c5d8479c0e848390048c6cb6 --- /dev/null +++ b/benchmark/0core/rating_only/Beauty_and_Personal_Care.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21ddbc18da2aa7396245752850066e79845843ed2e07b90801fc90923fe39909 +size 1368333645 diff --git a/benchmark/0core/rating_only/Books.csv b/benchmark/0core/rating_only/Books.csv new file mode 100644 index 0000000000000000000000000000000000000000..d14dd168bcbeb5741d4cfddf00a4785e6fe15bb6 --- /dev/null +++ b/benchmark/0core/rating_only/Books.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:068388cec9a5ee1b56e6858dad021d1e2154dedbbda65b5db30c634eccc874ba +size 1689808538 diff --git a/benchmark/0core/rating_only/CDs_and_Vinyl.csv b/benchmark/0core/rating_only/CDs_and_Vinyl.csv new file mode 100644 index 0000000000000000000000000000000000000000..2c0ff392a0ff5e9cfe33fc8ec6eae0f41dab8351 --- /dev/null +++ b/benchmark/0core/rating_only/CDs_and_Vinyl.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26b17d5371b44c0afe4d0795f4dc0cc63f5f80f49dc931b0a59f18ee0f10e4d1 +size 276598429 diff --git a/benchmark/0core/rating_only/Cell_Phones_and_Accessories.csv b/benchmark/0core/rating_only/Cell_Phones_and_Accessories.csv new file mode 100644 index 0000000000000000000000000000000000000000..71b039852eecc352a53a9897c3696302617ac67c --- /dev/null +++ b/benchmark/0core/rating_only/Cell_Phones_and_Accessories.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82efde9180263e3ec437993b913065dbce0de87a38ad794dfd7dd7e5b69985f7 +size 1192512657 diff --git a/benchmark/0core/rating_only/Clothing_Shoes_and_Jewelry.csv b/benchmark/0core/rating_only/Clothing_Shoes_and_Jewelry.csv new file mode 100644 index 0000000000000000000000000000000000000000..cf6d5e40018875b97a34ea7f53713f3b21d957f5 --- /dev/null +++ b/benchmark/0core/rating_only/Clothing_Shoes_and_Jewelry.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1879461a43508f08dd01fa56715f68e0d834fd9f0d6a016b8fe2b26445fcb74 +size 3780457974 diff --git a/benchmark/0core/rating_only/Digital_Music.csv b/benchmark/0core/rating_only/Digital_Music.csv new file mode 100644 index 0000000000000000000000000000000000000000..0bb09237b7e5bdc508da982c8cbbd4f9581d0216 --- /dev/null +++ b/benchmark/0core/rating_only/Digital_Music.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9fbf7d50ef694b9297b6c3ac3fb4b7ebf75bdd37e593cc1f1af713d6fedffe9 +size 7467624 diff --git a/benchmark/0core/rating_only/Electronics.csv b/benchmark/0core/rating_only/Electronics.csv new file mode 100644 index 0000000000000000000000000000000000000000..70475301bb430606fab495be3c71b9b383860a00 --- /dev/null +++ b/benchmark/0core/rating_only/Electronics.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2870fcfa23755418254a4329951f2916f068f7a078bbade67a09e85b818aa94 +size 2515205432 diff --git a/benchmark/0core/rating_only/Gift_Cards.csv b/benchmark/0core/rating_only/Gift_Cards.csv new file mode 100644 index 0000000000000000000000000000000000000000..51e7a6448e17b6c9aa1bb9115cdd70ed6c8d244f --- /dev/null +++ b/benchmark/0core/rating_only/Gift_Cards.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d356af4b1c9fc84a659070525a772c88277adc9be0ce7cbdfdd6424d0eb4917a +size 8693429 diff --git a/benchmark/0core/rating_only/Grocery_and_Gourmet_Food.csv b/benchmark/0core/rating_only/Grocery_and_Gourmet_Food.csv new file mode 100644 index 0000000000000000000000000000000000000000..a1d5093f52fbeb8efe6c5c3652177d4110b1ea27 --- /dev/null +++ b/benchmark/0core/rating_only/Grocery_and_Gourmet_Food.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acee9163d49fe5d1b556419ba37f1384a1d2dadd18eb4592790b87c7e6891b9f +size 816717436 diff --git a/benchmark/0core/rating_only/Handmade_Products.csv b/benchmark/0core/rating_only/Handmade_Products.csv new file mode 100644 index 0000000000000000000000000000000000000000..5dd17b771f3deea05740fc820a435d170b5ac5b4 --- /dev/null +++ b/benchmark/0core/rating_only/Handmade_Products.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a03dd49cdeb0a0087a898fe8c6143236f925ce0ff2f0c1fbd8d242dfc8471ce +size 38053747 diff --git a/benchmark/0core/rating_only/Health_and_Household.csv b/benchmark/0core/rating_only/Health_and_Household.csv new file mode 100644 index 0000000000000000000000000000000000000000..1f9914694ad846f0c240709ae47cd8d640d85a55 --- /dev/null +++ b/benchmark/0core/rating_only/Health_and_Household.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78b9c04e216f735e2ab19679809ff57ded92becef24f432eddd1cfe25b85401f +size 1465675207 diff --git a/benchmark/0core/rating_only/Health_and_Personal_Care.csv b/benchmark/0core/rating_only/Health_and_Personal_Care.csv new file mode 100644 index 0000000000000000000000000000000000000000..f5a25f383d5cb3922e5eb056ffc402406736f74d --- /dev/null +++ b/benchmark/0core/rating_only/Health_and_Personal_Care.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c671b00bf1fa832619d11bd2ac8cedbe5a784a8f85f2a392a93cd3e9b9fcba7 +size 28315975 diff --git a/benchmark/0core/rating_only/Home_and_Kitchen.csv b/benchmark/0core/rating_only/Home_and_Kitchen.csv new file mode 100644 index 0000000000000000000000000000000000000000..8577b5f75e3850b6951fbd741643bf058d44722b --- /dev/null +++ b/benchmark/0core/rating_only/Home_and_Kitchen.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:246d7f72379efd7be713bd931f50dc56f49f4a395d9c24804e7385bfbc16cc01 +size 3864227732 diff --git a/benchmark/0core/rating_only/Industrial_and_Scientific.csv b/benchmark/0core/rating_only/Industrial_and_Scientific.csv new file mode 100644 index 0000000000000000000000000000000000000000..754b35d990524dfd9900261f1cd8be9da4f83141 --- /dev/null +++ b/benchmark/0core/rating_only/Industrial_and_Scientific.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ac75135659eb03101cb82ac3898babae826b97d5af6cf148309db179e79e698 +size 296737778 diff --git a/benchmark/0core/rating_only/Kindle_Store.csv b/benchmark/0core/rating_only/Kindle_Store.csv new file mode 100644 index 0000000000000000000000000000000000000000..553a769ecc004c01d0fd4a9a3f328c25f9296c9d --- /dev/null +++ b/benchmark/0core/rating_only/Kindle_Store.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab0580593ef63d2964f0ef7ad20fd3b205f8ec810b98749e8db1ab7611436356 +size 1467649846 diff --git a/benchmark/0core/rating_only/Magazine_Subscriptions.csv b/benchmark/0core/rating_only/Magazine_Subscriptions.csv new file mode 100644 index 0000000000000000000000000000000000000000..415427098e2a98ce8be0ecae06ba371710b93bf8 --- /dev/null +++ b/benchmark/0core/rating_only/Magazine_Subscriptions.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aafcdc89f141bb568c6125986bdc6808a4fe9b046625a47f9dea4aae8603dad9 +size 4113515 diff --git a/benchmark/0core/rating_only/Movies_and_TV.csv b/benchmark/0core/rating_only/Movies_and_TV.csv new file mode 100644 index 0000000000000000000000000000000000000000..5dbefd68ac2eeacab3664a65413059f1de15f64e --- /dev/null +++ b/benchmark/0core/rating_only/Movies_and_TV.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b829b8f53177766cc8007b2ba3938e3ed5db945e88baa16f52833b19a4410a80 +size 995092641 diff --git a/benchmark/0core/rating_only/Musical_Instruments.csv b/benchmark/0core/rating_only/Musical_Instruments.csv new file mode 100644 index 0000000000000000000000000000000000000000..d653fe67f9916a944675dcef51597d8483462618 --- /dev/null +++ b/benchmark/0core/rating_only/Musical_Instruments.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:315ce8178dbc3f0ecd48eaa1b5233e228bbb8e3a86ab6ca11439976eafbb5209 +size 172583864 diff --git a/benchmark/0core/rating_only/Office_Products.csv b/benchmark/0core/rating_only/Office_Products.csv new file mode 100644 index 0000000000000000000000000000000000000000..9e8357110a5f700df2c52259dc996ae0bf8d5ab0 --- /dev/null +++ b/benchmark/0core/rating_only/Office_Products.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49e56c2937d3388c68b656f489be0aeab6ac5a20d20c0a8d2f0b4cd192c063d1 +size 735987926 diff --git a/benchmark/0core/rating_only/Patio_Lawn_and_Garden.csv b/benchmark/0core/rating_only/Patio_Lawn_and_Garden.csv new file mode 100644 index 0000000000000000000000000000000000000000..8ba9e0e19b211a822f2ad8dc9c3f4284ec91a1ac --- /dev/null +++ b/benchmark/0core/rating_only/Patio_Lawn_and_Garden.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bdf196ddc7d958b4b00bf8b5b3a38197b7b402ef6da6bb74398ede92aa925a4 +size 944963802 diff --git a/benchmark/0core/rating_only/Pet_Supplies.csv b/benchmark/0core/rating_only/Pet_Supplies.csv new file mode 100644 index 0000000000000000000000000000000000000000..8f49632c9c46e1ea38edb9b02bc34c6f81e6cefb --- /dev/null +++ b/benchmark/0core/rating_only/Pet_Supplies.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3749f4478c0fc3c08537ba1df13ba41782d206501e1b84fc0324f3ae45a8d6db +size 962657131 diff --git a/benchmark/0core/rating_only/Software.csv b/benchmark/0core/rating_only/Software.csv new file mode 100644 index 0000000000000000000000000000000000000000..12ff0ab3b87b85c58c9d02904ae66e00373536ef --- /dev/null +++ b/benchmark/0core/rating_only/Software.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2491500958015942b6be299788ec173ad626959d43cafecb96fc5bf40018dc15 +size 280051257 diff --git a/benchmark/0core/rating_only/Sports_and_Outdoors.csv b/benchmark/0core/rating_only/Sports_and_Outdoors.csv new file mode 100644 index 0000000000000000000000000000000000000000..e6031fa761f29d1b9e93fdb96c855607088c7b20 --- /dev/null +++ b/benchmark/0core/rating_only/Sports_and_Outdoors.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67478fe3be19d861b872597e152d236abb35a273a855d41bc78cf9b31df30ef4 +size 1122276174 diff --git a/benchmark/0core/rating_only/Subscription_Boxes.csv b/benchmark/0core/rating_only/Subscription_Boxes.csv new file mode 100644 index 0000000000000000000000000000000000000000..7da8118f2bd10d1a3a5ad55e6aec466fa07e9e15 --- /dev/null +++ b/benchmark/0core/rating_only/Subscription_Boxes.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf1e1760cd93c24905b64e948597e4d20b43021cdfd87a26fd99ecd60055d3ba +size 925315 diff --git a/benchmark/0core/rating_only/Tools_and_Home_Improvement.csv b/benchmark/0core/rating_only/Tools_and_Home_Improvement.csv new file mode 100644 index 0000000000000000000000000000000000000000..38b637eee1eb2152709fbd30d7ebf75c9696b4c6 --- /dev/null +++ b/benchmark/0core/rating_only/Tools_and_Home_Improvement.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:082d6e8cc6b546061ca10d33ca4fbb4bc9424f7a9c8570b14ebbc9320060bb97 +size 1545570399 diff --git a/benchmark/0core/rating_only/Toys_and_Games.csv b/benchmark/0core/rating_only/Toys_and_Games.csv new file mode 100644 index 0000000000000000000000000000000000000000..b8e946f92c2ebde6e4b063bd07474f1ee2995a41 --- /dev/null +++ b/benchmark/0core/rating_only/Toys_and_Games.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d96ace397af9a5447c2f152b7195b819b6a78dbf586249b97295b0a01effd985 +size 931056528 diff --git a/benchmark/0core/rating_only/Unknown.csv b/benchmark/0core/rating_only/Unknown.csv new file mode 100644 index 0000000000000000000000000000000000000000..4df749da6f9e97b01b1dd7c908d547e1a85df85b --- /dev/null +++ b/benchmark/0core/rating_only/Unknown.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22d256ab18f1eb24fe21e0504fb9da422f9dc072196a7c95c5963fa61eff47df +size 3661153155 diff --git a/benchmark/0core/rating_only/Video_Games.csv b/benchmark/0core/rating_only/Video_Games.csv new file mode 100644 index 0000000000000000000000000000000000000000..90df9b1fa681472151a1aad8571eea99e797077c --- /dev/null +++ b/benchmark/0core/rating_only/Video_Games.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1216270fdd163d085bd3efe2d98f4850f408e5a201edd37d74f9d86b74418746 +size 264209546 diff --git a/benchmark/0core/timestamp/All_Beauty.test.csv b/benchmark/0core/timestamp/All_Beauty.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..76744f54f61e184abd265259b5e1a3f8d49c99b5 --- /dev/null +++ b/benchmark/0core/timestamp/All_Beauty.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a327f9e92c6e9a6f4ed6a1bcead057bb46815b23a5e466a39e4abee457573f6 +size 2259533 diff --git a/benchmark/0core/timestamp/All_Beauty.train.csv b/benchmark/0core/timestamp/All_Beauty.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..c23d7a916b85822dfb2f6306a73fbe2c3c912c0f --- /dev/null +++ b/benchmark/0core/timestamp/All_Beauty.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b84e49d8d2408ee867367c461c9b40a70bd1f89630f7b5ea39f66ffcb9e3a06 +size 33826229 diff --git a/benchmark/0core/timestamp/All_Beauty.valid.csv b/benchmark/0core/timestamp/All_Beauty.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..a5c0a7653efb58a5aa1132c637695ed6cc329c43 --- /dev/null +++ b/benchmark/0core/timestamp/All_Beauty.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:109703b0f10072b2e2ff2fbf4b160d464f02f3c005e2d168c50c252dd3df490d +size 4163929 diff --git a/benchmark/0core/timestamp/Amazon_Fashion.test.csv b/benchmark/0core/timestamp/Amazon_Fashion.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..be9ddd95744110a7a6d20dc507ced909db17a68d --- /dev/null +++ b/benchmark/0core/timestamp/Amazon_Fashion.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d649e69ddc0f724df49b6165156b6702d922db70ef8b6e477e6cbde4575381c7 +size 6288009 diff --git a/benchmark/0core/timestamp/Amazon_Fashion.train.csv b/benchmark/0core/timestamp/Amazon_Fashion.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..c43add0b69657247fa917cb9b1c8de54beefb40c --- /dev/null +++ b/benchmark/0core/timestamp/Amazon_Fashion.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54a788f3bfefbc35d2d8892afd983449b9feb56f5ae75b4b900fd041b0bb3435 +size 125929675 diff --git a/benchmark/0core/timestamp/Amazon_Fashion.valid.csv b/benchmark/0core/timestamp/Amazon_Fashion.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..01b9d255639dca5fd55e4e150e675bbf7558b423 --- /dev/null +++ b/benchmark/0core/timestamp/Amazon_Fashion.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d62e7d7cee5c0202a160991e8736e7661038461e7581ad799f01b0069456ab30 +size 11298669 diff --git a/benchmark/0core/timestamp/Appliances.test.csv b/benchmark/0core/timestamp/Appliances.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..6300a1db11461c40871bd9b837597b6534fbf9ea --- /dev/null +++ b/benchmark/0core/timestamp/Appliances.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6a64d9b653a7164cd7fa4f0ab02f85e772ef9b048c93602cdc47fd8dd132378 +size 15587955 diff --git a/benchmark/0core/timestamp/Appliances.train.csv b/benchmark/0core/timestamp/Appliances.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..92214a53942e36fb1b003c424412ec13a05c447d --- /dev/null +++ b/benchmark/0core/timestamp/Appliances.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:984efd2ffa8e2267faa378d0caaedf9b82f31348f0f6b0bee467bdbda4de3ae4 +size 91334130 diff --git a/benchmark/0core/timestamp/Appliances.valid.csv b/benchmark/0core/timestamp/Appliances.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..d690eea9bc564e028a8dc33b1b63c05b97ea515e --- /dev/null +++ b/benchmark/0core/timestamp/Appliances.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee779456b88d935692edb3d7e6afc1e730ff839c7378bd2401741a4ca5427dd1 +size 15109825 diff --git a/benchmark/0core/timestamp/Arts_Crafts_and_Sewing.test.csv b/benchmark/0core/timestamp/Arts_Crafts_and_Sewing.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..6a655270499ae71e0e824e191f6be2522f9f73b6 --- /dev/null +++ b/benchmark/0core/timestamp/Arts_Crafts_and_Sewing.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f2f66dd606d632108066d3ea918b84d66cfc5d486d6e287646bf6ea91f8889b +size 61887481 diff --git a/benchmark/0core/timestamp/Arts_Crafts_and_Sewing.train.csv b/benchmark/0core/timestamp/Arts_Crafts_and_Sewing.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..d872799943ca145480d39fc707e55f58dd8b1ad0 --- /dev/null +++ b/benchmark/0core/timestamp/Arts_Crafts_and_Sewing.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af88e41653957bb93d139e3e7d5daec52a9358a6f006bdf63a67cc41a90fbbe5 +size 388496092 diff --git a/benchmark/0core/timestamp/Arts_Crafts_and_Sewing.valid.csv b/benchmark/0core/timestamp/Arts_Crafts_and_Sewing.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..c8f907bc3edbc7581a57dcf2c2728900459a296e --- /dev/null +++ b/benchmark/0core/timestamp/Arts_Crafts_and_Sewing.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fc8ad768064667020579daa1194c1b956c98a3889910537c9637adf60ac090a +size 62439465 diff --git a/benchmark/0core/timestamp/Automotive.test.csv b/benchmark/0core/timestamp/Automotive.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..092fc06a57836ebb7af5233ea409a1eb07052725 --- /dev/null +++ b/benchmark/0core/timestamp/Automotive.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44017b9dddd1c154a07e1554e2a7f9ace84cd0da9b8b23407ea157daa53df360 +size 139219703 diff --git a/benchmark/0core/timestamp/Automotive.train.csv b/benchmark/0core/timestamp/Automotive.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..eb1d6db1b17d06969045f440fbc08e673cfa3fff --- /dev/null +++ b/benchmark/0core/timestamp/Automotive.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d88f68eed83ec39a32dab036b19acc7ceaa7d62ec6f8287dcb586e069b29b80 +size 864363979 diff --git a/benchmark/0core/timestamp/Automotive.valid.csv b/benchmark/0core/timestamp/Automotive.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..d44395609cf1d67c730a71888d06fcdd550cc92a --- /dev/null +++ b/benchmark/0core/timestamp/Automotive.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31e7d2fba3a7f8d34d8bde43d962a78baf27d695a847347f6103fdcfed86d32d +size 138604949 diff --git a/benchmark/0core/timestamp/Baby_Products.test.csv b/benchmark/0core/timestamp/Baby_Products.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..037fd139239ae772d4f6aadbc669b0b4d5404f5c --- /dev/null +++ b/benchmark/0core/timestamp/Baby_Products.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a700b9db57a6bf7dd7141b3453c39185e7c3e447a2fbd77edbfd32cdb8b1afc1 +size 31924421 diff --git a/benchmark/0core/timestamp/Baby_Products.train.csv b/benchmark/0core/timestamp/Baby_Products.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..75ef4c85f005f526299fd76f585c8a5e4b97ab9a --- /dev/null +++ b/benchmark/0core/timestamp/Baby_Products.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9eb90bcd822dc6efaf3b2d6ce6e8984783b41a2ba7a9bad23d0bad5cfd2a00ee +size 283401213 diff --git a/benchmark/0core/timestamp/Baby_Products.valid.csv b/benchmark/0core/timestamp/Baby_Products.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..c2eff50a1a068e212e28431770da9675645d7c71 --- /dev/null +++ b/benchmark/0core/timestamp/Baby_Products.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:570e03b972de095963fd9558eec00143664946b5c714947809d2e8d74ed345de +size 30009431 diff --git a/benchmark/0core/timestamp/Beauty_and_Personal_Care.test.csv b/benchmark/0core/timestamp/Beauty_and_Personal_Care.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..3598abce1e6b5170bdeda92b47e7238f980dca32 --- /dev/null +++ b/benchmark/0core/timestamp/Beauty_and_Personal_Care.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1492539a41f79166b6edadc930d2b20f32243ea31409d772112830a2d85cb995 +size 200337767 diff --git a/benchmark/0core/timestamp/Beauty_and_Personal_Care.train.csv b/benchmark/0core/timestamp/Beauty_and_Personal_Care.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..6f9ba00db0fdafd0291b849dbf66eaa84d99b4e4 --- /dev/null +++ b/benchmark/0core/timestamp/Beauty_and_Personal_Care.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e0d716b4f14b86f884f1d6501e345bcdc493a5467af4637cbdf21bb1a1ae1ff +size 994804881 diff --git a/benchmark/0core/timestamp/Beauty_and_Personal_Care.valid.csv b/benchmark/0core/timestamp/Beauty_and_Personal_Care.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..cc182a1d5c864cdfdb284b0219d25072f90d91da --- /dev/null +++ b/benchmark/0core/timestamp/Beauty_and_Personal_Care.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d8370bcf593c61a9d95fa14487c06220e8349a6c8786821687ac68fb710f57f +size 173191071 diff --git a/benchmark/0core/timestamp/Books.test.csv b/benchmark/0core/timestamp/Books.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..9920d93f847e1282d337bfb07957153b9edc72e0 --- /dev/null +++ b/benchmark/0core/timestamp/Books.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:da3ddb0d6359a2f776e610181aadfd7682d6f706c2cc2be80ff4b7d0005dc3c7 +size 80570461 diff --git a/benchmark/0core/timestamp/Books.train.csv b/benchmark/0core/timestamp/Books.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..6a74cd71231109a6c1068fe5ea1386414cd9b968 --- /dev/null +++ b/benchmark/0core/timestamp/Books.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08de241a5906ac5c4deb766a828b1e69744363aa698acfb3fbb1cc129f5b1259 +size 1519043282 diff --git a/benchmark/0core/timestamp/Books.valid.csv b/benchmark/0core/timestamp/Books.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..612e625ed62520ac7e4b47f0fbc9dd67edd5ab40 --- /dev/null +++ b/benchmark/0core/timestamp/Books.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bae972ec088964ea58c05ff85a1aae68e5c31bb3f7624b256b316e658d056bb0 +size 90194869 diff --git a/benchmark/0core/timestamp/CDs_and_Vinyl.test.csv b/benchmark/0core/timestamp/CDs_and_Vinyl.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..666630662dfc765401f55623859dc0be39c19e54 --- /dev/null +++ b/benchmark/0core/timestamp/CDs_and_Vinyl.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be0c982cbfbf025803b79d6371c54196716645916ab8edb52e9d235e964f6475 +size 6140325 diff --git a/benchmark/0core/timestamp/CDs_and_Vinyl.train.csv b/benchmark/0core/timestamp/CDs_and_Vinyl.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..1a8ffa9ddc06e614f4b352f66f8fb06ca314b632 --- /dev/null +++ b/benchmark/0core/timestamp/CDs_and_Vinyl.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26f0003a349c97c314ee891cfaab63cd8ac0da36267683218519ba84ffb61cb3 +size 262409649 diff --git a/benchmark/0core/timestamp/CDs_and_Vinyl.valid.csv b/benchmark/0core/timestamp/CDs_and_Vinyl.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..acb9ca8544eb26ddf762a3555fbaab00aae23dcd --- /dev/null +++ b/benchmark/0core/timestamp/CDs_and_Vinyl.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf8181e4f87f9f829e1d76fc476acd9e2335024c06f2ce07e35c91c3812b365a +size 8048529 diff --git a/benchmark/0core/timestamp/Cell_Phones_and_Accessories.test.csv b/benchmark/0core/timestamp/Cell_Phones_and_Accessories.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..596d2c75a39ec7c122d56b17990a54f5de42ad0a --- /dev/null +++ b/benchmark/0core/timestamp/Cell_Phones_and_Accessories.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:174d5880680fa4dcd17a973346888131b994c3846014a4b991bd25ec9280fb32 +size 123293917 diff --git a/benchmark/0core/timestamp/Cell_Phones_and_Accessories.train.csv b/benchmark/0core/timestamp/Cell_Phones_and_Accessories.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..955d21de9b0948428666a7cf4e67c05a69377a21 --- /dev/null +++ b/benchmark/0core/timestamp/Cell_Phones_and_Accessories.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfee318b17b68dad7486148b8d80c40035f9ac11bbc6489c881d5d9d8a83daf3 +size 948022511 diff --git a/benchmark/0core/timestamp/Cell_Phones_and_Accessories.valid.csv b/benchmark/0core/timestamp/Cell_Phones_and_Accessories.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..ded3fff51d5f0ac199a9be499047bfc6b1d5904b --- /dev/null +++ b/benchmark/0core/timestamp/Cell_Phones_and_Accessories.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cec150241c71eecf34e2ed41065da8e8c0bdd5e042037957551a25e762a1c534 +size 121196303 diff --git a/benchmark/0core/timestamp/Clothing_Shoes_and_Jewelry.test.csv b/benchmark/0core/timestamp/Clothing_Shoes_and_Jewelry.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..2dd7434670b53e4a61d28a298c8d009f7bc669fd --- /dev/null +++ b/benchmark/0core/timestamp/Clothing_Shoes_and_Jewelry.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b999d5099ee31cde807cffe437703cee3d1a7c6f477ae605513b16600c1fc64d +size 480139391 diff --git a/benchmark/0core/timestamp/Clothing_Shoes_and_Jewelry.train.csv b/benchmark/0core/timestamp/Clothing_Shoes_and_Jewelry.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..812856c204d4a66e66446017caac495a8e8b2842 --- /dev/null +++ b/benchmark/0core/timestamp/Clothing_Shoes_and_Jewelry.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecceb3343893ac5072146cf38947ac830ad8f1044bef1e90e73e9523a11fce84 +size 2830530194 diff --git a/benchmark/0core/timestamp/Clothing_Shoes_and_Jewelry.valid.csv b/benchmark/0core/timestamp/Clothing_Shoes_and_Jewelry.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..cf1d62edb9e272dcfe96fe0f03cd43db48cd9788 --- /dev/null +++ b/benchmark/0core/timestamp/Clothing_Shoes_and_Jewelry.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8584fa97edea35879d36e784d9ecdff84553f23722e2d0aadbd1ea79a71ba9f7 +size 469788463 diff --git a/benchmark/0core/timestamp/Digital_Music.test.csv b/benchmark/0core/timestamp/Digital_Music.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..6a4073e0756bf929a999ea6e2bcc6330b4f7f8af --- /dev/null +++ b/benchmark/0core/timestamp/Digital_Music.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d63886989d223b495cfd15d41a988069619d956c517310fe75d6bed5d755600b +size 453597 diff --git a/benchmark/0core/timestamp/Digital_Music.train.csv b/benchmark/0core/timestamp/Digital_Music.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..afa1d043ed2520fcebc78783e75bdba0a5066421 --- /dev/null +++ b/benchmark/0core/timestamp/Digital_Music.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ebc592fcf1c36dff3b47b39a91cf87a07348ce64d3b74eb7ff8cbdce2c5c5dbf +size 6540726 diff --git a/benchmark/0core/timestamp/Digital_Music.valid.csv b/benchmark/0core/timestamp/Digital_Music.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..bc83b428a55239cd0279129454701bcba3b60982 --- /dev/null +++ b/benchmark/0core/timestamp/Digital_Music.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01d28f6ce693c0067808917165a8341ba30d26fd15a0a9f47993d91104bdc656 +size 473375 diff --git a/benchmark/0core/timestamp/Electronics.test.csv b/benchmark/0core/timestamp/Electronics.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..a0878a988cbec779089ae73463f2bdf3b7511592 --- /dev/null +++ b/benchmark/0core/timestamp/Electronics.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6489850aff81d6f8a483857029349d0ca594c1fb70166f313ba6c244b1912744 +size 236391019 diff --git a/benchmark/0core/timestamp/Electronics.train.csv b/benchmark/0core/timestamp/Electronics.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..a973cae85f04e81f3bc3ba27179187421a400274 --- /dev/null +++ b/benchmark/0core/timestamp/Electronics.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d687c2263ab255cca1f086e97b49322ec7196af436e94852703f40d85912d0cc +size 2049491384 diff --git a/benchmark/0core/timestamp/Electronics.valid.csv b/benchmark/0core/timestamp/Electronics.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..44bb2821b30ac66901d2184a58ceb689f23e034a --- /dev/null +++ b/benchmark/0core/timestamp/Electronics.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58b7596044a3318080fdbdf2b35e90c71cd4f7d10d79c8bc75d1b2a5217a7a49 +size 229323103 diff --git a/benchmark/0core/timestamp/Gift_Cards.test.csv b/benchmark/0core/timestamp/Gift_Cards.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..1de0991bf07f1b203ffca66a702f84722d5b5120 --- /dev/null +++ b/benchmark/0core/timestamp/Gift_Cards.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc51722496740a1ac995d24637d3ded7749cc1d23a093b702bd95b034c983cdf +size 716569 diff --git a/benchmark/0core/timestamp/Gift_Cards.train.csv b/benchmark/0core/timestamp/Gift_Cards.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..0e0bc009cf6880ca54a28a6949960eb78e93af4d --- /dev/null +++ b/benchmark/0core/timestamp/Gift_Cards.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:755225c3de0e6fe4748a558620c7ec35f26e3dc99bcdb20d169d13c2876b855b +size 7167275 diff --git a/benchmark/0core/timestamp/Gift_Cards.valid.csv b/benchmark/0core/timestamp/Gift_Cards.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..12c767ca4c6c8fe3f2ee5500c689d4fe744a514c --- /dev/null +++ b/benchmark/0core/timestamp/Gift_Cards.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0d46d65f5953e657d03d667a579d8e9589785d2ab209100e1f16b85a1c49ce5 +size 809659 diff --git a/benchmark/0core/timestamp/Grocery_and_Gourmet_Food.test.csv b/benchmark/0core/timestamp/Grocery_and_Gourmet_Food.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..aa98197b94419b2539b65ed7cb0f800aa62333d1 --- /dev/null +++ b/benchmark/0core/timestamp/Grocery_and_Gourmet_Food.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f7e8dc2a7a7bf1537c80e05665d21ca22dfcaf56b885b7ad7ed516851d475ca +size 100473909 diff --git a/benchmark/0core/timestamp/Grocery_and_Gourmet_Food.train.csv b/benchmark/0core/timestamp/Grocery_and_Gourmet_Food.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..7dd4901f8ac583a3df1eb979ecf182760fab0ce1 --- /dev/null +++ b/benchmark/0core/timestamp/Grocery_and_Gourmet_Food.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38e8fe1326ee5187e3f789eeb955790cd3d2aa54beef7c27fa02b36eb839cb21 +size 605289182 diff --git a/benchmark/0core/timestamp/Grocery_and_Gourmet_Food.valid.csv b/benchmark/0core/timestamp/Grocery_and_Gourmet_Food.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..f2f683ae5b275233bdeb1e582467fa7465307dbd --- /dev/null +++ b/benchmark/0core/timestamp/Grocery_and_Gourmet_Food.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b62e88ec18a0d57807578ecb0ae7b8c7f9741e8fd1f679c1d9298dde4b5cc44 +size 110954419 diff --git a/benchmark/0core/timestamp/Handmade_Products.test.csv b/benchmark/0core/timestamp/Handmade_Products.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..efcfeb9d638275ce5d59a0abea160092f7b28935 --- /dev/null +++ b/benchmark/0core/timestamp/Handmade_Products.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e6f5c78913803646a7121a325a3c334441dffb13ccfbe276f3e2631d7f03818 +size 6086663 diff --git a/benchmark/0core/timestamp/Handmade_Products.train.csv b/benchmark/0core/timestamp/Handmade_Products.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..c965dee0efc758fe80995d22d997347c7a3d4ac0 --- /dev/null +++ b/benchmark/0core/timestamp/Handmade_Products.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef7fe2f9419e651f9e83f415f443b0bb1b313e23f0a6cda95687747070584f03 +size 26509525 diff --git a/benchmark/0core/timestamp/Handmade_Products.valid.csv b/benchmark/0core/timestamp/Handmade_Products.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..a074a12cd575352943486ac15e4d5055782b7448 --- /dev/null +++ b/benchmark/0core/timestamp/Handmade_Products.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d09d7d71dac26ea996a17ad4c0e122929f6c0bc3913e6bf699e3abafde29512a +size 5457633 diff --git a/benchmark/0core/timestamp/Health_and_Household.test.csv b/benchmark/0core/timestamp/Health_and_Household.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..04cf6920685b35c9c97a787195a5c4a22dcdc529 --- /dev/null +++ b/benchmark/0core/timestamp/Health_and_Household.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d963ea94d5756b9177a2d694481b955da86f0a944af178b3635a0c448ed93659 +size 193115297 diff --git a/benchmark/0core/timestamp/Health_and_Household.train.csv b/benchmark/0core/timestamp/Health_and_Household.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5843e2529a6ac2a6b61e548b92a1d4b6e4f1c6d2 --- /dev/null +++ b/benchmark/0core/timestamp/Health_and_Household.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ae613f6457b9bd406e259980e35a24b93cca95ab340288066ec6a7ea74bb055 +size 1087493809 diff --git a/benchmark/0core/timestamp/Health_and_Household.valid.csv b/benchmark/0core/timestamp/Health_and_Household.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..f425935776f7d8763107543244ca175be9cd241d --- /dev/null +++ b/benchmark/0core/timestamp/Health_and_Household.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77047977b5805eba48c16d0cdc5de2c045cb350499cfb31c1da4b72f835ae1d0 +size 185066175 diff --git a/benchmark/0core/timestamp/Health_and_Personal_Care.test.csv b/benchmark/0core/timestamp/Health_and_Personal_Care.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..b1a6540eac7ff891aa00d10d0a2e384c61828718 --- /dev/null +++ b/benchmark/0core/timestamp/Health_and_Personal_Care.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2491130cdb59423058767f92779ab93f3f6f6f1ebfa0be3bb19b8c2d58d75336 +size 1706441 diff --git a/benchmark/0core/timestamp/Health_and_Personal_Care.train.csv b/benchmark/0core/timestamp/Health_and_Personal_Care.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..7c40e9efeb75452e4c85c8e06aaca3107a314176 --- /dev/null +++ b/benchmark/0core/timestamp/Health_and_Personal_Care.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72ffe32966ea908f2f3b14033944e601897a9a852987deff661e5f1676e847fc +size 23974629 diff --git a/benchmark/0core/timestamp/Health_and_Personal_Care.valid.csv b/benchmark/0core/timestamp/Health_and_Personal_Care.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..92459323e4cd2ecd6f42ffdf83b5090a34b1eca8 --- /dev/null +++ b/benchmark/0core/timestamp/Health_and_Personal_Care.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb37250aa81cc98e1a58338b24837c25c6159d7f49a1c52ef0089e90896384d5 +size 2634979 diff --git a/benchmark/0core/timestamp/Home_and_Kitchen.test.csv b/benchmark/0core/timestamp/Home_and_Kitchen.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..d81d12c56f29d8ac64a0b80d0f395889be891443 --- /dev/null +++ b/benchmark/0core/timestamp/Home_and_Kitchen.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51734103f3434c9038e9357af0acb655014df9411f6b2ff9cd728d73bf9133f7 +size 505755463 diff --git a/benchmark/0core/timestamp/Home_and_Kitchen.train.csv b/benchmark/0core/timestamp/Home_and_Kitchen.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..909f8b79957becb4cc1a0714757f9f77d6d53a87 --- /dev/null +++ b/benchmark/0core/timestamp/Home_and_Kitchen.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:145559a3d810938366901d8287e12e10c27470b5781f36850814614219b198ff +size 2872486544 diff --git a/benchmark/0core/timestamp/Home_and_Kitchen.valid.csv b/benchmark/0core/timestamp/Home_and_Kitchen.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..ef685452e91cf32b0f964ee138d85a69be6af84b --- /dev/null +++ b/benchmark/0core/timestamp/Home_and_Kitchen.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c00b625463e8eb7a9cfd6e0c53abf4233e1ec67c800e2034086bc2673d87e468 +size 485985799 diff --git a/benchmark/0core/timestamp/Industrial_and_Scientific.test.csv b/benchmark/0core/timestamp/Industrial_and_Scientific.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..87f7de3fcc718a4cb09501a392f7db2473337808 --- /dev/null +++ b/benchmark/0core/timestamp/Industrial_and_Scientific.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bfc35d55c771a51188f4cb5f381752d8ca146cc5facd892735219ca286be244 +size 37086583 diff --git a/benchmark/0core/timestamp/Industrial_and_Scientific.train.csv b/benchmark/0core/timestamp/Industrial_and_Scientific.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..d4040252a8312d17808d0b53006397056415ebab --- /dev/null +++ b/benchmark/0core/timestamp/Industrial_and_Scientific.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4c6fb5bddb878842e56261eb89b2c5f1957146527f786888f6237ebed4839c1 +size 219577964 diff --git a/benchmark/0core/timestamp/Industrial_and_Scientific.valid.csv b/benchmark/0core/timestamp/Industrial_and_Scientific.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..94193b6e9b70c61213ca02fdb9f8a6017264e3aa --- /dev/null +++ b/benchmark/0core/timestamp/Industrial_and_Scientific.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd0b5ed57b2e911168852aeeec9840b7c1b1acd2f9f4b2efb838b9dec94c1129 +size 40073305 diff --git a/benchmark/0core/timestamp/Kindle_Store.test.csv b/benchmark/0core/timestamp/Kindle_Store.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..801d7cca0f3d600412dd96844227fb743573dce4 --- /dev/null +++ b/benchmark/0core/timestamp/Kindle_Store.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1949ee829c6812c8d8df074ec60cf3278e906b4d9d9917427ae2b08b61a563aa +size 89668621 diff --git a/benchmark/0core/timestamp/Kindle_Store.train.csv b/benchmark/0core/timestamp/Kindle_Store.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..3620110d8c2768e7867b2e6e37a275045c50081b --- /dev/null +++ b/benchmark/0core/timestamp/Kindle_Store.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4eac89c237dd498054fd09187dd320f17afa5d8ebe3b31319f42eaaaad4b7fd +size 1276577460 diff --git a/benchmark/0core/timestamp/Kindle_Store.valid.csv b/benchmark/0core/timestamp/Kindle_Store.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..b68ca9a25715920fb622584c9781035cd76f31e7 --- /dev/null +++ b/benchmark/0core/timestamp/Kindle_Store.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1d3dcc8f1b6dbae3cc42b377de5b8e8c61366bcc7c5a307d9a03d5a4d646afb2 +size 101403839 diff --git a/benchmark/0core/timestamp/Magazine_Subscriptions.test.csv b/benchmark/0core/timestamp/Magazine_Subscriptions.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..adc6454ad524ae934c5bd1ccc9c4a2a746525e9b --- /dev/null +++ b/benchmark/0core/timestamp/Magazine_Subscriptions.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b02afb87400801818f1086ce6d795b9de8a5cff7c9df4bcc7164b498179f32ed +size 65403 diff --git a/benchmark/0core/timestamp/Magazine_Subscriptions.train.csv b/benchmark/0core/timestamp/Magazine_Subscriptions.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..a881d34fe96b056f9eed795d4ff6a889b02c7a43 --- /dev/null +++ b/benchmark/0core/timestamp/Magazine_Subscriptions.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:066e9ec1edbfc5e6d700f8ba7f6a93f75300d696b589aa14407f2df126aeb02a +size 3928205 diff --git a/benchmark/0core/timestamp/Magazine_Subscriptions.valid.csv b/benchmark/0core/timestamp/Magazine_Subscriptions.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..60af43984c0da666733e0d2afff8c587b117c7ee --- /dev/null +++ b/benchmark/0core/timestamp/Magazine_Subscriptions.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c8f15499f4fa69bad409b5418e1884482846a5aab9db316039155382e3a846e +size 119981 diff --git a/benchmark/0core/timestamp/Movies_and_TV.test.csv b/benchmark/0core/timestamp/Movies_and_TV.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..b7bc1dcaa6ec1052385cba5751e095a25c487c8d --- /dev/null +++ b/benchmark/0core/timestamp/Movies_and_TV.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c692ef43d7424c283fac8f0083de988ef8a89a61c0ac1097071ac581f0fc2ce +size 28689915 diff --git a/benchmark/0core/timestamp/Movies_and_TV.train.csv b/benchmark/0core/timestamp/Movies_and_TV.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..a83792d71fac34b7759a3512d46ac7eb7276a441 --- /dev/null +++ b/benchmark/0core/timestamp/Movies_and_TV.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75b9ca8b32e2e8c6146631139a875a4d1096bd3309bdbac50ad3128972f037c7 +size 932131603 diff --git a/benchmark/0core/timestamp/Movies_and_TV.valid.csv b/benchmark/0core/timestamp/Movies_and_TV.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..45fc49be16312b97f8d990724ed0762574927180 --- /dev/null +++ b/benchmark/0core/timestamp/Movies_and_TV.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c41b3a7df064b6ab5c7a251a1e88a11bb2c2d7638743bb31df494029c5a58f0b +size 34271197 diff --git a/benchmark/0core/timestamp/Musical_Instruments.test.csv b/benchmark/0core/timestamp/Musical_Instruments.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..9a48c4f416c0fd122812ea1c958c9d7e11b5b51b --- /dev/null +++ b/benchmark/0core/timestamp/Musical_Instruments.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cceb87c4f67fd5e0b7ef8e3200c400e89cae7f6ad8a9b8c498bfb67d9e0b2ff +size 15904857 diff --git a/benchmark/0core/timestamp/Musical_Instruments.train.csv b/benchmark/0core/timestamp/Musical_Instruments.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..930e356aeecc9a2e84e38a64e208c0680e5bc936 --- /dev/null +++ b/benchmark/0core/timestamp/Musical_Instruments.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:538494a1fa186d2946f7913470d918ca9d909a3fae560e6e9e61f0756bf9b584 +size 141204580 diff --git a/benchmark/0core/timestamp/Musical_Instruments.valid.csv b/benchmark/0core/timestamp/Musical_Instruments.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..de0bf6a23f87cd07ee340a86fa5e58e52efe0977 --- /dev/null +++ b/benchmark/0core/timestamp/Musical_Instruments.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:55550c3b7a42a3d51597ea76e3f40c8ebe28346fa419ea8665e825f749b8cbac +size 15474501 diff --git a/benchmark/0core/timestamp/Office_Products.test.csv b/benchmark/0core/timestamp/Office_Products.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..33de468a34ba9706defdffe85c30390955ff5133 --- /dev/null +++ b/benchmark/0core/timestamp/Office_Products.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77ce17342f4f4012ac28ed11adbcb15f555634cbc2de4521a580ffe25e60070e +size 82813605 diff --git a/benchmark/0core/timestamp/Office_Products.train.csv b/benchmark/0core/timestamp/Office_Products.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..37e147d145219c0075945587b80051a79c79aa24 --- /dev/null +++ b/benchmark/0core/timestamp/Office_Products.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f34eb9233b8f28be4f4edbc1ea83fa7cb9a80ec9c8268e7e954564fcfc6c1a4 +size 574778940 diff --git a/benchmark/0core/timestamp/Office_Products.valid.csv b/benchmark/0core/timestamp/Office_Products.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..2646391df1775816e78a95957c2a503319ce1427 --- /dev/null +++ b/benchmark/0core/timestamp/Office_Products.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1718299460ff3056352253fcb49a082d4493962bb76041a18882ad7a3f48059c +size 78395455 diff --git a/benchmark/0core/timestamp/Patio_Lawn_and_Garden.test.csv b/benchmark/0core/timestamp/Patio_Lawn_and_Garden.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..4b35abf5bf1f280c3f11eb8a4f1e6e79bbfd9020 --- /dev/null +++ b/benchmark/0core/timestamp/Patio_Lawn_and_Garden.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0cfb8118900b19f1bd641da513fb84c18f53381d3c0e222ca5eef97268e9d68 +size 134997109 diff --git a/benchmark/0core/timestamp/Patio_Lawn_and_Garden.train.csv b/benchmark/0core/timestamp/Patio_Lawn_and_Garden.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..7dc9b5fde67ebb97e00121b87632e840d329c257 --- /dev/null +++ b/benchmark/0core/timestamp/Patio_Lawn_and_Garden.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c43b5bc561a85771a0237e1931f24fdd283af39d333ad8b25db29518b437a880 +size 672780336 diff --git a/benchmark/0core/timestamp/Patio_Lawn_and_Garden.valid.csv b/benchmark/0core/timestamp/Patio_Lawn_and_Garden.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..3f9228a0ab24f62449daad51e6d7e40b2ac02bb1 --- /dev/null +++ b/benchmark/0core/timestamp/Patio_Lawn_and_Garden.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63ca3b9531b28455291c2d7f17dfa9236e8fc0ca82882649fe999b170e85e8f4 +size 137186431 diff --git a/benchmark/0core/timestamp/Pet_Supplies.test.csv b/benchmark/0core/timestamp/Pet_Supplies.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..d19aa705483c75b1976e55d42eda6ccbd6c3649e --- /dev/null +++ b/benchmark/0core/timestamp/Pet_Supplies.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:baada4efd1f5dbfbc2a62e99d226f116c8fedfe12a18d25f27484dd1ce23d045 +size 122056235 diff --git a/benchmark/0core/timestamp/Pet_Supplies.train.csv b/benchmark/0core/timestamp/Pet_Supplies.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..dadcdd573c8638be3e6b93f0537adbee13a3c224 --- /dev/null +++ b/benchmark/0core/timestamp/Pet_Supplies.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:80cce6737f4c8e9afd8a6a85c6b450d40d555583a53f1cc2fbb28834af7cdabf +size 721370019 diff --git a/benchmark/0core/timestamp/Pet_Supplies.valid.csv b/benchmark/0core/timestamp/Pet_Supplies.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..8aeb2c378e10a8808e339537a84fc2415bfbf0bc --- /dev/null +++ b/benchmark/0core/timestamp/Pet_Supplies.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07ceb083c3bfa5aefac212aa492effaa17f1e7fb23ce3e5f320eff135bf61378 +size 119230951 diff --git a/benchmark/0core/timestamp/Software.test.csv b/benchmark/0core/timestamp/Software.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..513577f9640a2205eb6b129c5c3e13a99efd59a6 --- /dev/null +++ b/benchmark/0core/timestamp/Software.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83dbb4b4efdb1f47a003a91a51b16cb84f95d39817206b00fdec0d4f114ebbff +size 5460051 diff --git a/benchmark/0core/timestamp/Software.train.csv b/benchmark/0core/timestamp/Software.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..3b0b6525ee499b4875260134c74e079ba0deb7f9 --- /dev/null +++ b/benchmark/0core/timestamp/Software.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfad7db49762db24728a19237ead25772ddd18daad8ebe385518b95df298a780 +size 266431441 diff --git a/benchmark/0core/timestamp/Software.valid.csv b/benchmark/0core/timestamp/Software.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..3c1d96813b2536ce611817498d5b5fce39c028ba --- /dev/null +++ b/benchmark/0core/timestamp/Software.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c05f3927c1879540cdbfbaa4206c5734bc34a54928960d775145ea9cb04e3ec3 +size 8159839 diff --git a/benchmark/0core/timestamp/Sports_and_Outdoors.test.csv b/benchmark/0core/timestamp/Sports_and_Outdoors.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..d3d3c5e3f1cac1e33dc1aa4a9b30d7b3afcd7d4d --- /dev/null +++ b/benchmark/0core/timestamp/Sports_and_Outdoors.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0d99736aa7486aaaaf0ff7d60430495f656357c2b154cb12d4b7bf59b88c614 +size 107271565 diff --git a/benchmark/0core/timestamp/Sports_and_Outdoors.train.csv b/benchmark/0core/timestamp/Sports_and_Outdoors.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..3a192d20133a2d56e493db375dc9e69b75169560 --- /dev/null +++ b/benchmark/0core/timestamp/Sports_and_Outdoors.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2db47f204de1a09aa546125d1882057db01f37860dbce002df7481cbdd692e4 +size 909289102 diff --git a/benchmark/0core/timestamp/Sports_and_Outdoors.valid.csv b/benchmark/0core/timestamp/Sports_and_Outdoors.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..7a6039fc72677dc504e0b06e2cfc49beccb5d443 --- /dev/null +++ b/benchmark/0core/timestamp/Sports_and_Outdoors.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cdd025ff9b32c7616b41945ccad8d15b7489ada6f81fcb1e4f26990d8a0c3e2 +size 105715581 diff --git a/benchmark/0core/timestamp/Subscription_Boxes.test.csv b/benchmark/0core/timestamp/Subscription_Boxes.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..dd03074711ecaa37abdb7bc0a9402d3311c9eda7 --- /dev/null +++ b/benchmark/0core/timestamp/Subscription_Boxes.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd42a172e7ad279dfca4d57db64f7293466485c4b86bc46aeb96c6d1827cc7bf +size 70161 diff --git a/benchmark/0core/timestamp/Subscription_Boxes.train.csv b/benchmark/0core/timestamp/Subscription_Boxes.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..4b93b0240d7995207d703d53ad51e47697bc69dd --- /dev/null +++ b/benchmark/0core/timestamp/Subscription_Boxes.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc849d8be96c82e7fdfe96e127289ecfcd9e3c2f775ba9693ccd29269c506a13 +size 731243 diff --git a/benchmark/0core/timestamp/Subscription_Boxes.valid.csv b/benchmark/0core/timestamp/Subscription_Boxes.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..d538e0fa63b4bbf26f3bbc28c37f707c1ea94653 --- /dev/null +++ b/benchmark/0core/timestamp/Subscription_Boxes.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:949fce892fe2281cd1fc0c550206c626588e939e285bbbf33b750eb90d3bbe1c +size 123985 diff --git a/benchmark/0core/timestamp/Tools_and_Home_Improvement.test.csv b/benchmark/0core/timestamp/Tools_and_Home_Improvement.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..b3cd742becda04ee05acbecbe72fe487a00917fe --- /dev/null +++ b/benchmark/0core/timestamp/Tools_and_Home_Improvement.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4dd1537be51550063a942dc454a71ed1ca054fb61b6992d62a7027e1df13ae1 +size 199606607 diff --git a/benchmark/0core/timestamp/Tools_and_Home_Improvement.train.csv b/benchmark/0core/timestamp/Tools_and_Home_Improvement.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..f3b5058497c9b327c2894584fffa0d28a26e801c --- /dev/null +++ b/benchmark/0core/timestamp/Tools_and_Home_Improvement.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddc62d9a18d13f5f86ec74a6c028edc624ab99ef0896b8ac23e7fbfa108573c4 +size 1154003403 diff --git a/benchmark/0core/timestamp/Tools_and_Home_Improvement.valid.csv b/benchmark/0core/timestamp/Tools_and_Home_Improvement.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..e50df579af653752b8b72e90142a8b4b24ae35cd --- /dev/null +++ b/benchmark/0core/timestamp/Tools_and_Home_Improvement.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2308eb9a440566c85861e37b8ee0591137e7010824a2c9646734a047f6443c4 +size 191960463 diff --git a/benchmark/0core/timestamp/Toys_and_Games.test.csv b/benchmark/0core/timestamp/Toys_and_Games.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..1ce8de4e558301eaa3fced042cd6efe11e3864ee --- /dev/null +++ b/benchmark/0core/timestamp/Toys_and_Games.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42f0a69b2e1b039aa5c0748f8330330bf61bc8c773e1e10a293826363348f823 +size 110360991 diff --git a/benchmark/0core/timestamp/Toys_and_Games.train.csv b/benchmark/0core/timestamp/Toys_and_Games.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..6a0ad570085a84fac7f7ec3bae3eb0a064d152f8 --- /dev/null +++ b/benchmark/0core/timestamp/Toys_and_Games.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:248b0abb880bbb7ab4ffe91ee66c1074f3f3b9c36c45d12134651d8c116d6b4c +size 719457450 diff --git a/benchmark/0core/timestamp/Toys_and_Games.valid.csv b/benchmark/0core/timestamp/Toys_and_Games.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..689d33da1d6c2554b11a5e519c14ab4750f129e3 --- /dev/null +++ b/benchmark/0core/timestamp/Toys_and_Games.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd9f0e317fad8843c619a21f20adefce31282623857b37bf9b89e494eb8440ab +size 101238161 diff --git a/benchmark/0core/timestamp/Unknown.test.csv b/benchmark/0core/timestamp/Unknown.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..b2eacb7a094ad8be13bf861eb41b1bd2ff1aa6e9 --- /dev/null +++ b/benchmark/0core/timestamp/Unknown.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d49cfb31f00b064a4276ef162005d190f094ce131f29dc3989f600255a05d54 +size 120811443 diff --git a/benchmark/0core/timestamp/Unknown.train.csv b/benchmark/0core/timestamp/Unknown.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..f042b532ff4953e7349555ece97d2fee3e633374 --- /dev/null +++ b/benchmark/0core/timestamp/Unknown.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:169b5a3ea5bf7ebfa71f400926a3fed23b9300687bd2356fa041b489a5f0e227 +size 3364397525 diff --git a/benchmark/0core/timestamp/Unknown.valid.csv b/benchmark/0core/timestamp/Unknown.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..1c0d0b6c79b8a58dff5cdddb583165b368b503be --- /dev/null +++ b/benchmark/0core/timestamp/Unknown.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90bc8dd31b84f63de04da14568320c1902faaac1d94ac14792bfe0683d6cfb9b +size 175944261 diff --git a/benchmark/0core/timestamp/Video_Games.test.csv b/benchmark/0core/timestamp/Video_Games.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..d0340096e8b7c0d223964b61bad4b7832944f216 --- /dev/null +++ b/benchmark/0core/timestamp/Video_Games.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d593b04da2f23582deeb2f308c1ab85c12b3735f37355095b90bc8fb248c2e1 +size 21104489 diff --git a/benchmark/0core/timestamp/Video_Games.train.csv b/benchmark/0core/timestamp/Video_Games.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..d28caed9d3f899ac2f34ae1d0858cd5e5d082bc6 --- /dev/null +++ b/benchmark/0core/timestamp/Video_Games.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71fbca37fad087047d1fb0a11d6a3300a0af033d1ef247518d3811d3d4a17b24 +size 223118500 diff --git a/benchmark/0core/timestamp/Video_Games.valid.csv b/benchmark/0core/timestamp/Video_Games.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..6ff07de34b4b5eadc2105cd0938d45f71ec5a74c --- /dev/null +++ b/benchmark/0core/timestamp/Video_Games.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:577776b4c89b0b9ba38f481e416a50013e303afea6c109168e1e1b2e87d0c03d +size 19986631 diff --git a/benchmark/0core/timestamp_w_his/All_Beauty.test.csv b/benchmark/0core/timestamp_w_his/All_Beauty.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..fe5987e5636818edd10eaf052324282b4303cea4 --- /dev/null +++ b/benchmark/0core/timestamp_w_his/All_Beauty.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09fae17295fa3277ba197dbd0776c597b83f162ca26d74644396e7653960eef4 +size 2480674 diff --git a/benchmark/0core/timestamp_w_his/All_Beauty.train.csv b/benchmark/0core/timestamp_w_his/All_Beauty.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..3afc4097bf8b3e61ec270709a2df175cad92805c --- /dev/null +++ b/benchmark/0core/timestamp_w_his/All_Beauty.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddb80240330bfaf8a17b61d5824538d3650c40f33975876a85f3a794dcf5bfec +size 35897716 diff --git a/benchmark/0core/timestamp_w_his/All_Beauty.valid.csv b/benchmark/0core/timestamp_w_his/All_Beauty.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..b3a0e828b4647788a9176634ea54251a6315d47f --- /dev/null +++ b/benchmark/0core/timestamp_w_his/All_Beauty.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1114132f119c830b14c2499360a3e5289df8bc5516250b90c22f4a9adbcd0974 +size 4709757 diff --git a/benchmark/0core/timestamp_w_his/Amazon_Fashion.test.csv b/benchmark/0core/timestamp_w_his/Amazon_Fashion.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..4b32d7c74f470cb2eb380900e8f4f9eaca226706 --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Amazon_Fashion.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:84540bd11cfad6396d42bc0c68e2bdb661e155fa1119ac422f603cf6604c17a0 +size 7111140 diff --git a/benchmark/0core/timestamp_w_his/Amazon_Fashion.train.csv b/benchmark/0core/timestamp_w_his/Amazon_Fashion.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..12e8fe7741cdd60b4607f3157f6d248eb1042b31 --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Amazon_Fashion.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19854543aea03071bfb7459cc83522b4560c93b704cd4f2d31ccbc417a41e1e7 +size 137644580 diff --git a/benchmark/0core/timestamp_w_his/Amazon_Fashion.valid.csv b/benchmark/0core/timestamp_w_his/Amazon_Fashion.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..e1e1bdb7a82b096dd8f1bfa60462233a7a68b108 --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Amazon_Fashion.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75bec937d05babb0ddc11f33c21b1a34df23d7e3df4a80a30cf3ba79e198d3e9 +size 13009733 diff --git a/benchmark/0core/timestamp_w_his/Appliances.test.csv b/benchmark/0core/timestamp_w_his/Appliances.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..43fea85901e5e9388a2585cf666c231555fc650f --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Appliances.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1390055e1bd24344685cc0115b31b5c75b5630a2dd4018810650bf3e9b73e73 +size 16924426 diff --git a/benchmark/0core/timestamp_w_his/Appliances.train.csv b/benchmark/0core/timestamp_w_his/Appliances.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..a8284deae31f6163312850d8fbe57a38aa6db6f2 --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Appliances.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ea5494d1e6c202fc59eb22cfbd8e0e6b3baf67cc8bf28e2bf8055c67224a0ab +size 96948641 diff --git a/benchmark/0core/timestamp_w_his/Appliances.valid.csv b/benchmark/0core/timestamp_w_his/Appliances.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..8801c0f95c264a7ea7d998fdf6c662debec0fbaa --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Appliances.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d9efe9438024e99c4b65e6105bc9f0c28513c735cde37f3061d2d674b8d6dbf +size 16303410 diff --git a/benchmark/0core/timestamp_w_his/Arts_Crafts_and_Sewing.test.csv b/benchmark/0core/timestamp_w_his/Arts_Crafts_and_Sewing.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..9e883e27d4cd8b3862850b1f0bb81a0acd00ca11 --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Arts_Crafts_and_Sewing.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60a90722dbf4207b2c8a8e16c4840770bc9ec3f683f996f9657529a37840e246 +size 122787574 diff --git a/benchmark/0core/timestamp_w_his/Arts_Crafts_and_Sewing.train.csv b/benchmark/0core/timestamp_w_his/Arts_Crafts_and_Sewing.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..ead4cd1e5de7de2a5a6810d57d8d096c751c89f7 --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Arts_Crafts_and_Sewing.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e4371aeeee61bf5b67bec5f905f6be50e7d71066a8d4fa3919f0fb0594d0f4a +size 582446392 diff --git a/benchmark/0core/timestamp_w_his/Arts_Crafts_and_Sewing.valid.csv b/benchmark/0core/timestamp_w_his/Arts_Crafts_and_Sewing.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..3f6f1df02df7c6a2a6d2b4184abda45eade56427 --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Arts_Crafts_and_Sewing.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4de7503df976a9721ca457b49db7d1d9babd73158fb590773e2e5ef4f49455d8 +size 113718812 diff --git a/benchmark/0core/timestamp_w_his/Automotive.test.csv b/benchmark/0core/timestamp_w_his/Automotive.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..e9ad2ed6c8c00bfa3d3d39c58d728353427dfead --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Automotive.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c34b24d8ec9a58467451fd3d8afed96e818ae6964d73b50d854e419f06ce70d +size 291070094 diff --git a/benchmark/0core/timestamp_w_his/Automotive.train.csv b/benchmark/0core/timestamp_w_his/Automotive.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..80942d96ef0130f01f164e102950b33ff8bc0c34 --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Automotive.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39613527e2f9a20877c069ed02741fe0da722aa19b01d0e0b38bd0100fd5a777 +size 1487402308 diff --git a/benchmark/0core/timestamp_w_his/Automotive.valid.csv b/benchmark/0core/timestamp_w_his/Automotive.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..3c66f3ad0257e429002164708930f9f40f5f8568 --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Automotive.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:048d442ab87f6b231ee4837251a849d75140e2ff795abe7b2c7deddc01992341 +size 277035395 diff --git a/benchmark/0core/timestamp_w_his/Baby_Products.test.csv b/benchmark/0core/timestamp_w_his/Baby_Products.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c4c7962b6ba3e2696de973cd18bb6a0e413336be --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Baby_Products.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1d4fd6701d82f40b0ddcb5375fb8a533ef0dc84d15a68f103fb922ff66a28cf +size 59060576 diff --git a/benchmark/0core/timestamp_w_his/Baby_Products.train.csv b/benchmark/0core/timestamp_w_his/Baby_Products.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..d8b4d645fe97bdcee3e63ad6358d4a35db47ed4f --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Baby_Products.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8c9a698e1fff766f381e8ecbf81904ec85d7309a5984d8d8a57a0df5349c031 +size 381306303 diff --git a/benchmark/0core/timestamp_w_his/Baby_Products.valid.csv b/benchmark/0core/timestamp_w_his/Baby_Products.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..8ec0c7ff90149cf08f5c07648a0329affbee6db9 --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Baby_Products.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db372abe5d29cdd51db75e44de5c72b591a24a12fcae062fb628fd38fbd45dc5 +size 46856076 diff --git a/benchmark/0core/timestamp_w_his/Beauty_and_Personal_Care.test.csv b/benchmark/0core/timestamp_w_his/Beauty_and_Personal_Care.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..d6ea39e07f546f5116ab9fe2f9fe94d1e5a21592 --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Beauty_and_Personal_Care.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:335647f8006277bfde308b873f0abd59b81f48c303b190e3faca971e14c51eb0 +size 752708407 diff --git a/benchmark/0core/timestamp_w_his/Beauty_and_Personal_Care.train.csv b/benchmark/0core/timestamp_w_his/Beauty_and_Personal_Care.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..2bffaf6b89a7dc74f4939df6677914f4315d6c55 --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Beauty_and_Personal_Care.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:334ea3683f6cff8e7b429c01291c563d8543b014e4575477eda926c0f065d056 +size 1673067976 diff --git a/benchmark/0core/timestamp_w_his/Beauty_and_Personal_Care.valid.csv b/benchmark/0core/timestamp_w_his/Beauty_and_Personal_Care.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..6f4c84fa7ed897a73f550a890b9bc9bb48ab7863 --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Beauty_and_Personal_Care.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b15efc38852c4a23f2410a4ab6438c17d9241c6de5abe235a8f7902aa18d369 +size 524129011 diff --git a/benchmark/0core/timestamp_w_his/Books.test.csv b/benchmark/0core/timestamp_w_his/Books.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..80037fc3402377fe43cc9c7f2c1cc96f3b56c274 --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Books.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61d82416cd2f87c2cf9be33a6b6d5eeca86e8721bf5646571f9afdc8b2349f8e +size 457202678 diff --git a/benchmark/0core/timestamp_w_his/Books.train.csv b/benchmark/0core/timestamp_w_his/Books.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..3400b8b0c063d806622d521b22aadead3b504d28 --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Books.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1bc48ade1a3bc61fb9e8f646e92824190e35238b0faeb8738fc0ac57c2a1b805 +size 6684361230 diff --git a/benchmark/0core/timestamp_w_his/Books.valid.csv b/benchmark/0core/timestamp_w_his/Books.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..ae808771479ec034cd7de22e767a607febd33be4 --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Books.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b0596f447a1fa984a389b2d791755bd4346a3716ef4f2e767124356aa321773 +size 522305933 diff --git a/benchmark/0core/timestamp_w_his/CDs_and_Vinyl.test.csv b/benchmark/0core/timestamp_w_his/CDs_and_Vinyl.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..a7256b07736fcda1a7068c61d61f551f43962197 --- /dev/null +++ b/benchmark/0core/timestamp_w_his/CDs_and_Vinyl.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c162c95d1c2e89a7ecee71fae9f8ca0561398c03542e7711c980f707eab14ef8 +size 27820104 diff --git a/benchmark/0core/timestamp_w_his/CDs_and_Vinyl.train.csv b/benchmark/0core/timestamp_w_his/CDs_and_Vinyl.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..4df7da3f8369c483c5c01aad5b2118de7332c637 --- /dev/null +++ b/benchmark/0core/timestamp_w_his/CDs_and_Vinyl.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50319a3e75efff493bdca4632e0f84d683ef922ebb8c7e5d02f16605ff5cf7db +size 1275824726 diff --git a/benchmark/0core/timestamp_w_his/CDs_and_Vinyl.valid.csv b/benchmark/0core/timestamp_w_his/CDs_and_Vinyl.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..643d4f988fd009a1b1535a5e5ee3ca18612ed2f3 --- /dev/null +++ b/benchmark/0core/timestamp_w_his/CDs_and_Vinyl.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:892316be6bad3e2a48aa55dc684080a3539aba2cd4ca1e304292806b35698eb5 +size 36509820 diff --git a/benchmark/0core/timestamp_w_his/Cell_Phones_and_Accessories.test.csv b/benchmark/0core/timestamp_w_his/Cell_Phones_and_Accessories.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..695999c7b9575bf9e444643f4bd5a3abd7a916a1 --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Cell_Phones_and_Accessories.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95509edff6114197a90c443783763ea8ad81c5fc94e3af546fefe23142ebd797 +size 177232707 diff --git a/benchmark/0core/timestamp_w_his/Cell_Phones_and_Accessories.train.csv b/benchmark/0core/timestamp_w_his/Cell_Phones_and_Accessories.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..604da8c746ed995ed26ec7784f11500df037b613 --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Cell_Phones_and_Accessories.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3097d2c0845642e44d0ad461b75e605683000e158fd143eaacf7d405e7614804 +size 1165078137 diff --git a/benchmark/0core/timestamp_w_his/Cell_Phones_and_Accessories.valid.csv b/benchmark/0core/timestamp_w_his/Cell_Phones_and_Accessories.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..ed5153a7fb8e10ed4d3ca9e465227ce6e3bbacc7 --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Cell_Phones_and_Accessories.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c3c7c730096ad8fc2c40a451e088759873bd4807ba314e53e714466bf7cbeb4 +size 162471468 diff --git a/benchmark/0core/timestamp_w_his/Clothing_Shoes_and_Jewelry.test.csv b/benchmark/0core/timestamp_w_his/Clothing_Shoes_and_Jewelry.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..93fa30feaf83c35327ae9afb099d52d8a85e8ce4 --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Clothing_Shoes_and_Jewelry.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f18424eafb9e80ae97684690955332e073fe03c8f59c7505687bee0230e5d08 +size 1482400335 diff --git a/benchmark/0core/timestamp_w_his/Clothing_Shoes_and_Jewelry.train.csv b/benchmark/0core/timestamp_w_his/Clothing_Shoes_and_Jewelry.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..790dd84d29c6e817f61753e4c89a5e0d1a789741 --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Clothing_Shoes_and_Jewelry.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f83eb8daaa83272130c2376bd474b39deb75099efa0ab37e572ee1ffffa60e99 +size 5255313175 diff --git a/benchmark/0core/timestamp_w_his/Clothing_Shoes_and_Jewelry.valid.csv b/benchmark/0core/timestamp_w_his/Clothing_Shoes_and_Jewelry.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..4dceb6e05182a6939d39541d1e719d00b817b157 --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Clothing_Shoes_and_Jewelry.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e1bd05034855f6f2c92a8dfddd8f1fc7558b9720500d30debd7fce583c98adf +size 1165837661 diff --git a/benchmark/0core/timestamp_w_his/Digital_Music.test.csv b/benchmark/0core/timestamp_w_his/Digital_Music.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..f914078c6057f054bf2ab4c1b3f73383050d572b --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Digital_Music.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e93899099c073ad86698091a4f08653885a5adc652f65882c0da9bc79494600b +size 560224 diff --git a/benchmark/0core/timestamp_w_his/Digital_Music.train.csv b/benchmark/0core/timestamp_w_his/Digital_Music.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..12bc6e384030fcd8c18ec1db8058b1aa20906940 --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Digital_Music.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83c399422935a573b66f45a6d39ead8131da53f8e9c86cdafc37f1d7f8eb59e4 +size 9144369 diff --git a/benchmark/0core/timestamp_w_his/Digital_Music.valid.csv b/benchmark/0core/timestamp_w_his/Digital_Music.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..0ce910ccbcc9742e8da7f646ba492a05d07baaba --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Digital_Music.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4da34b37a82626d2650e09ecd70b361aff22db8b53870bf1c1a59a8f0dff0b50 +size 583347 diff --git a/benchmark/0core/timestamp_w_his/Electronics.test.csv b/benchmark/0core/timestamp_w_his/Electronics.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..230ec1b9835ff6c2adb4a3cfc53b5f0b8af701c2 --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Electronics.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0dcf3d8cffb8e197b83172cfefc1f56c0155b7528449ed9d089e24512ba1d0d3 +size 511519616 diff --git a/benchmark/0core/timestamp_w_his/Electronics.train.csv b/benchmark/0core/timestamp_w_his/Electronics.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..0cd6bf826b4db513a57916fec09d78b7c240d22a --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Electronics.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff66285790797fbeceadfff341ec5725e953e7b8a62e5c2b4cb13b48072af411 +size 3398574604 diff --git a/benchmark/0core/timestamp_w_his/Electronics.valid.csv b/benchmark/0core/timestamp_w_his/Electronics.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..d9563dd75e6aa391fc0c29d3a6c1667890c5e031 --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Electronics.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bafa06b3b22d077f8ae314519d61a97e1c568d3e2397176e221f21459af9e05 +size 452750807 diff --git a/benchmark/0core/timestamp_w_his/Gift_Cards.test.csv b/benchmark/0core/timestamp_w_his/Gift_Cards.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..b84f2488efdb57db21b65d2337dbd4fbbfb8cf96 --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Gift_Cards.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70c8284cead738c31df926747154e915adda23780e59c50d9b7db3dc0a25cb58 +size 756250 diff --git a/benchmark/0core/timestamp_w_his/Gift_Cards.train.csv b/benchmark/0core/timestamp_w_his/Gift_Cards.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..37908428c7cf9837cc476cff689b89c8365665b8 --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Gift_Cards.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6094e2946e55050ccb7a4a9cfe9e6ca01ca50ae48923df81db8ce0c57f9a987d +size 7552912 diff --git a/benchmark/0core/timestamp_w_his/Gift_Cards.valid.csv b/benchmark/0core/timestamp_w_his/Gift_Cards.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..db3f66f0ae3327c657be0b58ef1f87a6d81c8b65 --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Gift_Cards.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbd4caf407f3c8cf4774c014b023d680873a4362a1bd4b69cf98f43f41aea98a +size 855655 diff --git a/benchmark/0core/timestamp_w_his/Grocery_and_Gourmet_Food.test.csv b/benchmark/0core/timestamp_w_his/Grocery_and_Gourmet_Food.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..587d550a192f5b3aede88533d4a5b31ce04ef8ab --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Grocery_and_Gourmet_Food.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2b243e422970783bd08edfbee215e1cb3ecf1dfdb399af92d18490c4d09ceb3 +size 260631314 diff --git a/benchmark/0core/timestamp_w_his/Grocery_and_Gourmet_Food.train.csv b/benchmark/0core/timestamp_w_his/Grocery_and_Gourmet_Food.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..4e8f596a6bc42f05ea462959a89c630e20a643d9 --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Grocery_and_Gourmet_Food.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89c670ec384537b4b16f109ca9b73d958f93c5bf83b0e87c09778df982c2a6e7 +size 1014893473 diff --git a/benchmark/0core/timestamp_w_his/Grocery_and_Gourmet_Food.valid.csv b/benchmark/0core/timestamp_w_his/Grocery_and_Gourmet_Food.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..90fda60443d9dd38f6a5c5cf491c4d5a7ac4c1de --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Grocery_and_Gourmet_Food.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82cc2c1d42ae87a388577e1bb37243b0b4ec37872d02f1e737563f7b4810b701 +size 279056888 diff --git a/benchmark/0core/timestamp_w_his/Handmade_Products.test.csv b/benchmark/0core/timestamp_w_his/Handmade_Products.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..e87e1b56a63749186597049fe63a9495ef3284b5 --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Handmade_Products.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9486840874e93461df39da354fb4987c08d753de9a006e640a4fdfe0d9fe767 +size 6443437 diff --git a/benchmark/0core/timestamp_w_his/Handmade_Products.train.csv b/benchmark/0core/timestamp_w_his/Handmade_Products.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..0e17d1f01ccd706e8fe8b23452568ff154018dee --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Handmade_Products.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8280a16cd6ec6ce150538c9b28d2610a8ae1d7397250e83c6b4657233925c3d4 +size 27720407 diff --git a/benchmark/0core/timestamp_w_his/Handmade_Products.valid.csv b/benchmark/0core/timestamp_w_his/Handmade_Products.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..c4d3896a80b5b37ffe055d50a48acf3debfea605 --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Handmade_Products.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6f8b5338fe295a8c9245ae87565986fb8fcc7eebc91a6e9c72afbb22e3d0bf6 +size 5726995 diff --git a/benchmark/0core/timestamp_w_his/Health_and_Household.test.csv b/benchmark/0core/timestamp_w_his/Health_and_Household.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..e325fb71160c81f03e84ec41a236e818787cee6b --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Health_and_Household.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77a6d255c2c925f5fe2b30038924a30dde56c02f0e9dcdb10ea15b118aea91c2 +size 530598780 diff --git a/benchmark/0core/timestamp_w_his/Health_and_Household.train.csv b/benchmark/0core/timestamp_w_his/Health_and_Household.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..f7c5ff4e5e59e1796dc24eb6b4825df122953d4c --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Health_and_Household.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22dd3400b2621c6d16db875f828c446b75bc82394014c7ed06ee96890fd75972 +size 1697717329 diff --git a/benchmark/0core/timestamp_w_his/Health_and_Household.valid.csv b/benchmark/0core/timestamp_w_his/Health_and_Household.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..f10f3011c613d3fa6c67193890f481fa927139ee --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Health_and_Household.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:26d8678be2911202dc12bdfd1ed2b7c2fa9b5c434bf0cc30b18a2425def290ec +size 473246426 diff --git a/benchmark/0core/timestamp_w_his/Health_and_Personal_Care.test.csv b/benchmark/0core/timestamp_w_his/Health_and_Personal_Care.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..5f3e19e6191ce097bef094c6c8e15cceab930b2a --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Health_and_Personal_Care.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1389eaa4f7e1f414d66ec10b611420afc8e7acb56e75bffa9ccf64e1bc200349 +size 1824943 diff --git a/benchmark/0core/timestamp_w_his/Health_and_Personal_Care.train.csv b/benchmark/0core/timestamp_w_his/Health_and_Personal_Care.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..43d1c6e29465ce34997087e9b9e3f190bc202ee6 --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Health_and_Personal_Care.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ea90ebf0967b4fe177cb8df38a45385a97351047dbc9989d357f0f9b69f59ae +size 24954859 diff --git a/benchmark/0core/timestamp_w_his/Health_and_Personal_Care.valid.csv b/benchmark/0core/timestamp_w_his/Health_and_Personal_Care.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..2e35a999a58564622ca7bfed3fa2a3c0e18458dd --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Health_and_Personal_Care.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bac7ee2a4fbcc852cbc8d18875cc2bdb6dd31013856d99603fe7db0f1f81c25f +size 2937525 diff --git a/benchmark/0core/timestamp_w_his/Home_and_Kitchen.test.csv b/benchmark/0core/timestamp_w_his/Home_and_Kitchen.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..f1cd0887c7663d27e1aaff1f9134574d6d39340d --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Home_and_Kitchen.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7a5849580c7f8e349825557f8f0cfc0ca17b4fba273a24a9a3b6c182649548f +size 1599767447 diff --git a/benchmark/0core/timestamp_w_his/Home_and_Kitchen.train.csv b/benchmark/0core/timestamp_w_his/Home_and_Kitchen.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..4d1e6daddaf075fdd189156d0c8fe88809603a06 --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Home_and_Kitchen.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a89b3dd08979029f858d5a5a2df294ce8d4eb57c73a774494c87e4bb7aa84148 +size 5165417448 diff --git a/benchmark/0core/timestamp_w_his/Home_and_Kitchen.valid.csv b/benchmark/0core/timestamp_w_his/Home_and_Kitchen.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..cfe93b7c73c21a9568c8eecf0647770cc18d1d8c --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Home_and_Kitchen.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8626a0f67f3bf9e70e5f66b599b39ac46119cd15200c1a585414478496c054ff +size 1214024676 diff --git a/benchmark/0core/timestamp_w_his/Industrial_and_Scientific.test.csv b/benchmark/0core/timestamp_w_his/Industrial_and_Scientific.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..5cbbd64112ca8ab2ff9bfe0394566fd29ba0b34f --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Industrial_and_Scientific.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e608ab164c4075dcd902dcd85dbb46ff9d7beb54165761987669066eae58627a +size 54976370 diff --git a/benchmark/0core/timestamp_w_his/Industrial_and_Scientific.train.csv b/benchmark/0core/timestamp_w_his/Industrial_and_Scientific.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..743c3264bf95856a19d611c057c86c328e13a749 --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Industrial_and_Scientific.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf170b76720b3dc363cd383a322b8693e1707be245649b10f99ec1b632f4d03e +size 266526339 diff --git a/benchmark/0core/timestamp_w_his/Industrial_and_Scientific.valid.csv b/benchmark/0core/timestamp_w_his/Industrial_and_Scientific.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..22eb238ccf222db7879b0b916e1560168e3b5359 --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Industrial_and_Scientific.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:463d2d81eb8ff1148b3adb8b5d3c714e70691dade2a516629252092fea2cf2ba +size 52847913 diff --git a/benchmark/0core/timestamp_w_his/Kindle_Store.test.csv b/benchmark/0core/timestamp_w_his/Kindle_Store.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..4bb1e295874a31d59a57dd1aa43cca51f3d3de95 --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Kindle_Store.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d6a8f1c0c084ea7e33def6c01cff2f6c9bab48423ebb6f3444623dbbb0c5228 +size 2045679661 diff --git a/benchmark/0core/timestamp_w_his/Kindle_Store.train.csv b/benchmark/0core/timestamp_w_his/Kindle_Store.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..b62eb076103221ec966887b90519b7f55bed1c2b --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Kindle_Store.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d9f162edd042510b52475b55491b8bf27c9f239cbc3a1153cf5602ab6e423e4 +size 10059160927 diff --git a/benchmark/0core/timestamp_w_his/Kindle_Store.valid.csv b/benchmark/0core/timestamp_w_his/Kindle_Store.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..a137350f798eb1bd06bb5bd93f01ea232c15c935 --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Kindle_Store.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c30760d253257ec667b1022e7c0b422c7dbbcdd198eded01fa146d1428fa457 +size 2199993252 diff --git a/benchmark/0core/timestamp_w_his/Magazine_Subscriptions.test.csv b/benchmark/0core/timestamp_w_his/Magazine_Subscriptions.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..58d7cff6a9692d89b70698fa27660d78288c4e9d --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Magazine_Subscriptions.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c798e4d699a0e34c45e15e82d8861c66eb50719b3511e5034c420b1fdebfa5c9 +size 71015 diff --git a/benchmark/0core/timestamp_w_his/Magazine_Subscriptions.train.csv b/benchmark/0core/timestamp_w_his/Magazine_Subscriptions.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..551ac459fe9288590b4804c0d196d7289e6a15d7 --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Magazine_Subscriptions.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6759e96a02b9016c12eca2c4476ddc2d4ab88508cbc8c6db44f5a2433f8bdcc5 +size 4222072 diff --git a/benchmark/0core/timestamp_w_his/Magazine_Subscriptions.valid.csv b/benchmark/0core/timestamp_w_his/Magazine_Subscriptions.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..86b6affca4d86f442628a784f7e2f8efacb78ff8 --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Magazine_Subscriptions.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e34863d5acee87c7f98b58c4a1ad4670bbb47d9870a3a8f08e59d78b00f23232 +size 130249 diff --git a/benchmark/0core/timestamp_w_his/Movies_and_TV.test.csv b/benchmark/0core/timestamp_w_his/Movies_and_TV.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..5d54b94d555b0d56df18862b5ae964ec2a84ffaa --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Movies_and_TV.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ef5802c844e98bae58c6746107342d11ae20a1a7128d0e2b28a464c2bedbd72 +size 158695404 diff --git a/benchmark/0core/timestamp_w_his/Movies_and_TV.train.csv b/benchmark/0core/timestamp_w_his/Movies_and_TV.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..d0e61739e1bebc4c944f2c4ec6cce4bf56ec2b0e --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Movies_and_TV.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c4148492c7cbf3cb784e887412264a56d70bcc642070ff23e336c4c940cfd4c +size 3007357125 diff --git a/benchmark/0core/timestamp_w_his/Movies_and_TV.valid.csv b/benchmark/0core/timestamp_w_his/Movies_and_TV.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..c38c5e93ea18e299204423dae3ce8c808d8d11be --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Movies_and_TV.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f57bff2a38458d6ccf4d8afab487d7b1b782fa54b65349936c68fb1e60b2130 +size 189011096 diff --git a/benchmark/0core/timestamp_w_his/Musical_Instruments.test.csv b/benchmark/0core/timestamp_w_his/Musical_Instruments.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..988c3675b5bb651f6c8a523ddc351152377cee0c --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Musical_Instruments.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33676e355d72453dd93324e6e98f0dfeee543fcb0d1f05a607567d04ecb97f61 +size 26829889 diff --git a/benchmark/0core/timestamp_w_his/Musical_Instruments.train.csv b/benchmark/0core/timestamp_w_his/Musical_Instruments.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..b42ba2178b421659701c7e49de0ff4ed833a5361 --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Musical_Instruments.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d31df66458ec942ec23463c5ca8d56e4915d2d49a24ff2b5d77d29ee1710fc76 +size 197601430 diff --git a/benchmark/0core/timestamp_w_his/Musical_Instruments.valid.csv b/benchmark/0core/timestamp_w_his/Musical_Instruments.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..a30e0a558a02c6db2756cb8e4d3296b41e53c06d --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Musical_Instruments.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12dc43374f0c00df86d8214c1e5dd5858f30da702b001782ab24a8f748bcefce +size 24949996 diff --git a/benchmark/0core/timestamp_w_his/Office_Products.test.csv b/benchmark/0core/timestamp_w_his/Office_Products.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..0abb49ad3464ffb785413aa874f2ee67216e4f42 --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Office_Products.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1de33a8802e95e21340684733fd7d4bf146cba9e464df695b23c1d6e530f8acd +size 129524876 diff --git a/benchmark/0core/timestamp_w_his/Office_Products.train.csv b/benchmark/0core/timestamp_w_his/Office_Products.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..c6ed271d02738843e61581e928d9af2d387701a8 --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Office_Products.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c24fb1d7ead2aa8e569b039f853c1e74291e2f55d485e5dba23c4a8ee7a94201 +size 735796209 diff --git a/benchmark/0core/timestamp_w_his/Office_Products.valid.csv b/benchmark/0core/timestamp_w_his/Office_Products.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..a5f815e5216c3f683f90274626859a9d487bfc44 --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Office_Products.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df0d3efab3dd3ff01b6d25b22b45936af8a03da56077363a9c9ad5cd99936070 +size 111634526 diff --git a/benchmark/0core/timestamp_w_his/Patio_Lawn_and_Garden.test.csv b/benchmark/0core/timestamp_w_his/Patio_Lawn_and_Garden.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..fca1f6129ad2baca9aab686e99ca2d9b1282a85c --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Patio_Lawn_and_Garden.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af5bfee19fb3a36ed0d8e07ac03eeddce01a824930cd81752ac7016a5b8b71ca +size 240232587 diff --git a/benchmark/0core/timestamp_w_his/Patio_Lawn_and_Garden.train.csv b/benchmark/0core/timestamp_w_his/Patio_Lawn_and_Garden.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..1ed3830dfd5ec89f40be3d1ad37be30162a6081e --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Patio_Lawn_and_Garden.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b284bb993b0c6b06c58e8ed8b453f01a35c5e1dd1e5ae592c55a4d3eedb7b38 +size 894032617 diff --git a/benchmark/0core/timestamp_w_his/Patio_Lawn_and_Garden.valid.csv b/benchmark/0core/timestamp_w_his/Patio_Lawn_and_Garden.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..f9a2cc97e47d0ce2d618537cf4d88e31a6bebbc5 --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Patio_Lawn_and_Garden.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:81122f5cf1ba06243840f7ff62257bdfda6e506a80c59ed8039bcfbd98644faa +size 218418845 diff --git a/benchmark/0core/timestamp_w_his/Pet_Supplies.test.csv b/benchmark/0core/timestamp_w_his/Pet_Supplies.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..4f38b31994ab7e9721c2bd1b40c2c3ef6f6b32e9 --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Pet_Supplies.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b624b1ac29e15fbc68abfa6314bd8fcef967d2f2ab4574a050bf44b62286bf90 +size 225877571 diff --git a/benchmark/0core/timestamp_w_his/Pet_Supplies.train.csv b/benchmark/0core/timestamp_w_his/Pet_Supplies.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..15081921a96c2f066edf5e2c5459e391db45a2ed --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Pet_Supplies.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd9e64edf485904bd885f83420bc2a00e0714993d8fc5527bc555364eae83d57 +size 1096107662 diff --git a/benchmark/0core/timestamp_w_his/Pet_Supplies.valid.csv b/benchmark/0core/timestamp_w_his/Pet_Supplies.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..e764eb97eece712757d4a1e3bccc8164d894fb05 --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Pet_Supplies.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9a278709206fd85f7ae9642ad32e2da69ed608d62af16a4dda900e1514aac57 +size 201277513 diff --git a/benchmark/0core/timestamp_w_his/Software.test.csv b/benchmark/0core/timestamp_w_his/Software.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..f912fa8132b7732e2ec3482e736b0779b1f8eb03 --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Software.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5da62fa8ee31b608b1379c9b300df4db498c60ad63614cf4f564c1b1bbed957 +size 8880651 diff --git a/benchmark/0core/timestamp_w_his/Software.train.csv b/benchmark/0core/timestamp_w_his/Software.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..3bbfddcf9156261fc06edc03ee2c12812f63da54 --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Software.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac47ecddb82ebe075d4c67d326993e6d09dbaba794caae45507009624f7872ad +size 386089950 diff --git a/benchmark/0core/timestamp_w_his/Software.valid.csv b/benchmark/0core/timestamp_w_his/Software.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..019b6320cbbc813e4b7a093951d0ad9b1438e872 --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Software.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:473c828771bcde059e8797012a790f5a43aad43a27fca6cfb8c42e545462c3ea +size 13862407 diff --git a/benchmark/0core/timestamp_w_his/Sports_and_Outdoors.test.csv b/benchmark/0core/timestamp_w_his/Sports_and_Outdoors.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..fc6c2ce45b7f921a29d587c3ae65693590207118 --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Sports_and_Outdoors.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9260f7f241c4a3c66b4ec7cb6b84aff0fa6cd07f7e6c1d514999c67b377b5eb +size 194677423 diff --git a/benchmark/0core/timestamp_w_his/Sports_and_Outdoors.train.csv b/benchmark/0core/timestamp_w_his/Sports_and_Outdoors.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..6b6bc538b50da3be2134c7b1c4a3488e96edbb98 --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Sports_and_Outdoors.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8db7835173d2ea9fe9215c4ecbd1c08e62230293eba7a48b45e1f077cc38485f +size 1264194545 diff --git a/benchmark/0core/timestamp_w_his/Sports_and_Outdoors.valid.csv b/benchmark/0core/timestamp_w_his/Sports_and_Outdoors.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..6c55c4bd60dc090f7617045b71dc1594b9542593 --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Sports_and_Outdoors.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0c202833df27998c9ec9dfd7af7ad24e99fbe2e03ea09f3b456edf6ce377610c +size 170682368 diff --git a/benchmark/0core/timestamp_w_his/Subscription_Boxes.test.csv b/benchmark/0core/timestamp_w_his/Subscription_Boxes.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..e302b222d295fb61c70a3860faf911fa6b66a342 --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Subscription_Boxes.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce98abad81c55001275af7b304aa30f0b5bc50da6b5cb0da9b6fc695c20d7c44 +size 73387 diff --git a/benchmark/0core/timestamp_w_his/Subscription_Boxes.train.csv b/benchmark/0core/timestamp_w_his/Subscription_Boxes.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..c769e76a22e85827719c5cd30d3155feedccac4b --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Subscription_Boxes.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39e0c48297f93c3a46deef7aec25ccbe835b9601eaeb280008cce7f17ba51509 +size 749413 diff --git a/benchmark/0core/timestamp_w_his/Subscription_Boxes.valid.csv b/benchmark/0core/timestamp_w_his/Subscription_Boxes.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..9840f27342a951098ca0db16ebef4155291438fc --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Subscription_Boxes.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a592fdefc97e277ab3ef5540f28c76069065627b8d7c9ca0c5e450b77a115d9 +size 128454 diff --git a/benchmark/0core/timestamp_w_his/Tools_and_Home_Improvement.test.csv b/benchmark/0core/timestamp_w_his/Tools_and_Home_Improvement.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..5d979f6087c641cd5c9c92d75a56bcb9a1894e0a --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Tools_and_Home_Improvement.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:650cf552a35fea7ac6a66abf790ef130a678f262679bc2ff58691135db2301bc +size 471584791 diff --git a/benchmark/0core/timestamp_w_his/Tools_and_Home_Improvement.train.csv b/benchmark/0core/timestamp_w_his/Tools_and_Home_Improvement.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..505aa9d96d0a6c5f95a5b67a089e46a7814efb87 --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Tools_and_Home_Improvement.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ff3b70650c06372a954f8c1ebb88857569c3e0aee7ee0e8d4aee28995e16e79 +size 1814043573 diff --git a/benchmark/0core/timestamp_w_his/Tools_and_Home_Improvement.valid.csv b/benchmark/0core/timestamp_w_his/Tools_and_Home_Improvement.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..5e25560e9b5342d1c3d27125830b23fd30ed8754 --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Tools_and_Home_Improvement.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d551c707d1ffd41c049b215c57fa432b6c1e10cc77a71fa5de647662a1c3eb4 +size 369804354 diff --git a/benchmark/0core/timestamp_w_his/Toys_and_Games.test.csv b/benchmark/0core/timestamp_w_his/Toys_and_Games.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..725d43ac38a1361f76d3e8f31811cc71977882d6 --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Toys_and_Games.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cb0c1be5cb794c20cabc4c580733a171b32281990a4f75a4bd02ba87e5212a6 +size 248739597 diff --git a/benchmark/0core/timestamp_w_his/Toys_and_Games.train.csv b/benchmark/0core/timestamp_w_his/Toys_and_Games.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..a91773ecb6ff6ceae13d19e2b552287c76ab9f53 --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Toys_and_Games.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85dd69939783965375f68f27365fd51da6955575869517395d8e0de9ed663aba +size 1130575098 diff --git a/benchmark/0core/timestamp_w_his/Toys_and_Games.valid.csv b/benchmark/0core/timestamp_w_his/Toys_and_Games.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..2543d2dbd9d6eaafa84f8a89aeb7d5b2852a2088 --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Toys_and_Games.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfa91e417ccc668ff2b9e1ee4605f314045c14791a790f2034c2197a2cbc4fa7 +size 186943297 diff --git a/benchmark/0core/timestamp_w_his/Unknown.test.csv b/benchmark/0core/timestamp_w_his/Unknown.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..3c00feff8a53ce55f8d174d748546a4ef758016a --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Unknown.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78399d21822c980f40b78ec8d53f6986f996e845e7685cce4e3e7f23188b6469 +size 270142822 diff --git a/benchmark/0core/timestamp_w_his/Unknown.train.csv b/benchmark/0core/timestamp_w_his/Unknown.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..2943fb39b24843c2624d45f3f88a94fda83ffeb8 --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Unknown.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:203e7bd9701920695c1e096f054b88d408714d3a36c2e49668e0fc89b1208d61 +size 6883442875 diff --git a/benchmark/0core/timestamp_w_his/Unknown.valid.csv b/benchmark/0core/timestamp_w_his/Unknown.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..1117d3fe6e8fd909a61579fd872c4a0cd4098963 --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Unknown.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0104294ecc5ad8ca0cdd7eab27cb4b7513c1ef18a5bb91716fab40bd4b9e88e6 +size 411978826 diff --git a/benchmark/0core/timestamp_w_his/Video_Games.test.csv b/benchmark/0core/timestamp_w_his/Video_Games.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..9895f41f2fb1145c8fbc1cb2dfcdee24c2194bbd --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Video_Games.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1d29615e9e74440340c51f149d37dbb78c9c6a79784f50597060d6b0d881dfc +size 29140707 diff --git a/benchmark/0core/timestamp_w_his/Video_Games.train.csv b/benchmark/0core/timestamp_w_his/Video_Games.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..3a039a2f2da6ac06f99ee9d4c21a7b8159309a94 --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Video_Games.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5e62c2134f2c1b89f1d95d3f420d836e56b7740918510cee8b4bf6fff16eb5e8 +size 309849898 diff --git a/benchmark/0core/timestamp_w_his/Video_Games.valid.csv b/benchmark/0core/timestamp_w_his/Video_Games.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..8def40526412043fa2100a40569677fd89173098 --- /dev/null +++ b/benchmark/0core/timestamp_w_his/Video_Games.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:51026ec6e33b8f87d3eaeee3a8744bc29b914b1b37a2d2a720a15a5e84ab6ac4 +size 26669984 diff --git a/benchmark/5core/last_out/All_Beauty.test.csv b/benchmark/5core/last_out/All_Beauty.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..24d820d7882ac1cdabb0ec9e3c1e9c91bcccb99a --- /dev/null +++ b/benchmark/5core/last_out/All_Beauty.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cd30c7f2437f90134eb9bed213015a70672a00845b6f075c1b17f039b34bc1d0 +size 14741 diff --git a/benchmark/5core/last_out/All_Beauty.train.csv b/benchmark/5core/last_out/All_Beauty.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..7050da8da7acdf785fc6b53e6771e5af0bc23a17 --- /dev/null +++ b/benchmark/5core/last_out/All_Beauty.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:45acfc57118893ed5382594914d4330d194a9f02cd247c2c0063e406ea7f8fac +size 118071 diff --git a/benchmark/5core/last_out/All_Beauty.valid.csv b/benchmark/5core/last_out/All_Beauty.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..865cde0e67ca528fe4d4f3ac668cd761e6de0334 --- /dev/null +++ b/benchmark/5core/last_out/All_Beauty.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:71a835237b1aaea1ea56ab349bce96acf138435d4cc60c47d5ff9c43a30dfd13 +size 14741 diff --git a/benchmark/5core/last_out/Arts_Crafts_and_Sewing.test.csv b/benchmark/5core/last_out/Arts_Crafts_and_Sewing.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..69673de57cb900dee5773293483a29df2da9f00d --- /dev/null +++ b/benchmark/5core/last_out/Arts_Crafts_and_Sewing.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5c456df0462622bb07ebe6ae3015e9de41243f09eae08dc86b5eefaad1909d84 +size 11442725 diff --git a/benchmark/5core/last_out/Arts_Crafts_and_Sewing.train.csv b/benchmark/5core/last_out/Arts_Crafts_and_Sewing.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..12f942177cb969a162fe7765a7231deb7ddd99d9 --- /dev/null +++ b/benchmark/5core/last_out/Arts_Crafts_and_Sewing.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a223865bebae387d5295344272b5e865548ca9a310acf0b3b5ee6c2e568b7d08 +size 80733299 diff --git a/benchmark/5core/last_out/Arts_Crafts_and_Sewing.valid.csv b/benchmark/5core/last_out/Arts_Crafts_and_Sewing.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..fae058e020a92eab29c988f9d12dc241d41cfcb6 --- /dev/null +++ b/benchmark/5core/last_out/Arts_Crafts_and_Sewing.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c18dd2b0fd30bbc901773c974f7b914a6c8fba30c05e8e71ea8aa1ec890e61d4 +size 11442725 diff --git a/benchmark/5core/last_out/Automotive.test.csv b/benchmark/5core/last_out/Automotive.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..2dacbe99daa5315ae369870e317cb07b8d619bb8 --- /dev/null +++ b/benchmark/5core/last_out/Automotive.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9742ff80f16ed55f9baf6eb6ce0e03a7fee43e844dcd9fefc58f48dd241c590 +size 36664145 diff --git a/benchmark/5core/last_out/Automotive.train.csv b/benchmark/5core/last_out/Automotive.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..ee5aa51afd022f63bd7973f0e8bac1da17bb4b0b --- /dev/null +++ b/benchmark/5core/last_out/Automotive.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ca87822047405e97e785bd25ee1b632145491529f54c257574e9c9e06aae8e3 +size 278864411 diff --git a/benchmark/5core/last_out/Automotive.valid.csv b/benchmark/5core/last_out/Automotive.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..e9f33d20d3881059f857cae870872caecdae48b5 --- /dev/null +++ b/benchmark/5core/last_out/Automotive.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fccd0c9bda29f67338b31b6f1a03a1ef9b71d73044f8df9409af0b85be87f2c1 +size 36664145 diff --git a/benchmark/5core/last_out/Baby_Products.test.csv b/benchmark/5core/last_out/Baby_Products.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..487ea939357cc0ac1aa6a3a8083bf3a078653518 --- /dev/null +++ b/benchmark/5core/last_out/Baby_Products.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28480ed59ea9e3ee56ed750b91e3ea6387ad6eee5bc7f18f5c9ab6bc078d4c9c +size 8745215 diff --git a/benchmark/5core/last_out/Baby_Products.train.csv b/benchmark/5core/last_out/Baby_Products.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..573184523e414204722a0ca650f5aeef590a5180 --- /dev/null +++ b/benchmark/5core/last_out/Baby_Products.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d426788fb34515f1a0da1764fce99ecff5dc06d98cf5fd1b0abeec01f7b79660 +size 54500073 diff --git a/benchmark/5core/last_out/Baby_Products.valid.csv b/benchmark/5core/last_out/Baby_Products.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..79ab387d4258b6d711063d7fe2475ba7dd0c9336 --- /dev/null +++ b/benchmark/5core/last_out/Baby_Products.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:846440a6d34727ed02daf52c6a59ee1063ff99b5a2df627ecb9ad67a7b50cc01 +size 8745215 diff --git a/benchmark/5core/last_out/Beauty_and_Personal_Care.test.csv b/benchmark/5core/last_out/Beauty_and_Personal_Care.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..883f2abeb22da80efe868f07f8d7a062633f920c --- /dev/null +++ b/benchmark/5core/last_out/Beauty_and_Personal_Care.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c07a4243f8594a3e302e2be7902f1d73ae2fb9b6ef6b675dd77853e0c161bbbd +size 42315583 diff --git a/benchmark/5core/last_out/Beauty_and_Personal_Care.train.csv b/benchmark/5core/last_out/Beauty_and_Personal_Care.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..6904669950aceac6f89573bf84c54f55876bb505 --- /dev/null +++ b/benchmark/5core/last_out/Beauty_and_Personal_Care.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:157df871dfe0cc250ad514bac4d7893c26d8a4ae14609ac4ecd95dd8a1b9e9f4 +size 299618188 diff --git a/benchmark/5core/last_out/Beauty_and_Personal_Care.valid.csv b/benchmark/5core/last_out/Beauty_and_Personal_Care.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..4f6a87cb64b1f6e9433f3dbf5c1bd93216afe346 --- /dev/null +++ b/benchmark/5core/last_out/Beauty_and_Personal_Care.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:314ad54b40a44cbc6bdaf4a5c5d499f8d5a243317991833afe68f201dfad24ae +size 42315583 diff --git a/benchmark/5core/last_out/Books.test.csv b/benchmark/5core/last_out/Books.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..48b504852d03b02e3a1c1fd9b993b2df00cb08fa --- /dev/null +++ b/benchmark/5core/last_out/Books.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b9f19eaaf044699054150cb28cb55ff32161ee6076f250a26e1a1eebe1380e1 +size 45027336 diff --git a/benchmark/5core/last_out/Books.train.csv b/benchmark/5core/last_out/Books.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..9e3985d612fbaf244db40e06996e1744350dd2d9 --- /dev/null +++ b/benchmark/5core/last_out/Books.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0b41e90c3613f39920eb46c8246f8e3ccf22e0827811b84bcd0e5e610e53f89 +size 460191551 diff --git a/benchmark/5core/last_out/Books.valid.csv b/benchmark/5core/last_out/Books.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..4424546934b278f37eb355510f2302c55fbf7cd3 --- /dev/null +++ b/benchmark/5core/last_out/Books.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5dcc185af8bdf10202852f4099f95ad9af209a541cfded94424a34ca73824470 +size 45026443 diff --git a/benchmark/5core/last_out/CDs_and_Vinyl.test.csv b/benchmark/5core/last_out/CDs_and_Vinyl.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..3312a0699931f98b20b84e550acc98a6a42fa4a6 --- /dev/null +++ b/benchmark/5core/last_out/CDs_and_Vinyl.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddd3e2ad6afddacbd260d8705523c5f69ea3532ace16fadb9bf704bd55177b08 +size 7182297 diff --git a/benchmark/5core/last_out/CDs_and_Vinyl.train.csv b/benchmark/5core/last_out/CDs_and_Vinyl.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..d11cea98af1aaef588e7d7ec75a6b6cec7323728 --- /dev/null +++ b/benchmark/5core/last_out/CDs_and_Vinyl.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9bec5f8388ad9f6bbf5f9c7d61db92a3c5d199cedbe8d72666c5c455e6053dca +size 75616424 diff --git a/benchmark/5core/last_out/CDs_and_Vinyl.valid.csv b/benchmark/5core/last_out/CDs_and_Vinyl.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..179e680d7d0c23560d4ea2ec29c1ebfbefeb31ed --- /dev/null +++ b/benchmark/5core/last_out/CDs_and_Vinyl.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d972a1a8a41aa3c3e59a767a09cebff820e437f391ff325f20e052bbf843828d +size 7181539 diff --git a/benchmark/5core/last_out/Cell_Phones_and_Accessories.test.csv b/benchmark/5core/last_out/Cell_Phones_and_Accessories.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..3dd0ffa11e668e886e0451e55825382d88318b21 --- /dev/null +++ b/benchmark/5core/last_out/Cell_Phones_and_Accessories.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:149208c6fd1a983385c07c23791888ffcaf6aad286cee31b377c10c37ab1100e +size 22098099 diff --git a/benchmark/5core/last_out/Cell_Phones_and_Accessories.train.csv b/benchmark/5core/last_out/Cell_Phones_and_Accessories.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..9bd14c6e86b053678aeba5c224030b3c5b36ba37 --- /dev/null +++ b/benchmark/5core/last_out/Cell_Phones_and_Accessories.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb627871355d255cac374e872d3a2f2ff264c96d0652e8a9e7d5b9449cf22b26 +size 115469297 diff --git a/benchmark/5core/last_out/Cell_Phones_and_Accessories.valid.csv b/benchmark/5core/last_out/Cell_Phones_and_Accessories.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..4094516187ab773f6323c386ea3d9c41eed3d6a1 --- /dev/null +++ b/benchmark/5core/last_out/Cell_Phones_and_Accessories.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:669295077248e3c2a198db2a7457f00de5c842f06c07f14e54ffe35176971dae +size 22098099 diff --git a/benchmark/5core/last_out/Clothing_Shoes_and_Jewelry.test.csv b/benchmark/5core/last_out/Clothing_Shoes_and_Jewelry.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..67f02cb803a84b0d28856e04187bfdeb7c804b32 --- /dev/null +++ b/benchmark/5core/last_out/Clothing_Shoes_and_Jewelry.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5adb43bc8dfbf3229181500fcc7de6ed3b9ecd90326d7c8e6ca844380335b4ba +size 146449079 diff --git a/benchmark/5core/last_out/Clothing_Shoes_and_Jewelry.train.csv b/benchmark/5core/last_out/Clothing_Shoes_and_Jewelry.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..a1c327a163f625bc386fedfa02b52657b32fc877 --- /dev/null +++ b/benchmark/5core/last_out/Clothing_Shoes_and_Jewelry.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4424325bee2ca5a2a8e04d6202b51b3fc411e213d51ed6155c9f5a8bdddb383b +size 1047077958 diff --git a/benchmark/5core/last_out/Clothing_Shoes_and_Jewelry.valid.csv b/benchmark/5core/last_out/Clothing_Shoes_and_Jewelry.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..2910542546a2dcd78c44fa9c3e359b256e89d861 --- /dev/null +++ b/benchmark/5core/last_out/Clothing_Shoes_and_Jewelry.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7dd03bbe19b6313c71c3d80ec14500f5b209a92b01ace583949f0606a97a127 +size 146449079 diff --git a/benchmark/5core/last_out/Electronics.test.csv b/benchmark/5core/last_out/Electronics.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..e68bbb1c271b132cf20288573b85b8f5a27ff365 --- /dev/null +++ b/benchmark/5core/last_out/Electronics.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72538f0f0fbd82bdd6fc01bfc264123b20f8bb10282cdafcde2e7f617df135f5 +size 95179679 diff --git a/benchmark/5core/last_out/Electronics.train.csv b/benchmark/5core/last_out/Electronics.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..2bee851262562554a4a92b40c0dc05d39ea4eeb9 --- /dev/null +++ b/benchmark/5core/last_out/Electronics.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffb714eac350bb769ca6ea3da832c80d1e2f6851ff0cf70084496c32a061dbb7 +size 707120257 diff --git a/benchmark/5core/last_out/Electronics.valid.csv b/benchmark/5core/last_out/Electronics.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..4d243a16da1e7421ab40175c1295db675527dcb6 --- /dev/null +++ b/benchmark/5core/last_out/Electronics.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea694788acc87762c9d1b2a1fa85b4e876ee71d55ac4254ba59c9d34c22a78a0 +size 95179675 diff --git a/benchmark/5core/last_out/Gift_Cards.test.csv b/benchmark/5core/last_out/Gift_Cards.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..7a2e5b6fa6c22043422166acbd605f5d3b40121a --- /dev/null +++ b/benchmark/5core/last_out/Gift_Cards.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a34137287b95ffa2df29ef40c561186811e4686a087646f3dfdf787679bb55cb +size 21903 diff --git a/benchmark/5core/last_out/Gift_Cards.train.csv b/benchmark/5core/last_out/Gift_Cards.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..9ff2ec1b401f1968663479121080b7204895b5d3 --- /dev/null +++ b/benchmark/5core/last_out/Gift_Cards.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8977da9c4aff89cbbb0225c2685b3bc41529c938d1e88dcf3af323d0081164d +size 97187 diff --git a/benchmark/5core/last_out/Gift_Cards.valid.csv b/benchmark/5core/last_out/Gift_Cards.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..b98d1c16b0da8bb5d7b2b18715474abf441d9199 --- /dev/null +++ b/benchmark/5core/last_out/Gift_Cards.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:651fcc3335337404f424232386ee47ca4718a53b8f54deeed7902525c0ea8afa +size 21903 diff --git a/benchmark/5core/last_out/Grocery_and_Gourmet_Food.test.csv b/benchmark/5core/last_out/Grocery_and_Gourmet_Food.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..932fc99dd4de8f67796a3990cfb65e19132265fb --- /dev/null +++ b/benchmark/5core/last_out/Grocery_and_Gourmet_Food.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2ea0238bb49331dc44d54b58a9d0180b8ea5fbe7233b84cc651855487e3b2b2e +size 23476231 diff --git a/benchmark/5core/last_out/Grocery_and_Gourmet_Food.train.csv b/benchmark/5core/last_out/Grocery_and_Gourmet_Food.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..c06ed0980220ffeb28b29cdedb1db184108180bb --- /dev/null +++ b/benchmark/5core/last_out/Grocery_and_Gourmet_Food.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b62f219d3600d8b9e64c885ef25851372c62c3a643a2a245123dc81c8ff4ac82 +size 182083619 diff --git a/benchmark/5core/last_out/Grocery_and_Gourmet_Food.valid.csv b/benchmark/5core/last_out/Grocery_and_Gourmet_Food.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..5ac3f6bf34f8d53e830a668ed155c82624a463c5 --- /dev/null +++ b/benchmark/5core/last_out/Grocery_and_Gourmet_Food.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b093e469a8aa2133ab28e89aadc3481a61a664c4cbe0e384352c9ea0bbd239f +size 23476231 diff --git a/benchmark/5core/last_out/Health_and_Household.test.csv b/benchmark/5core/last_out/Health_and_Household.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..15613134377e68bc58ee04a6bdcdd4076dc3cd4c --- /dev/null +++ b/benchmark/5core/last_out/Health_and_Household.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3651b1abe3f40b03e01678f0dd6c8671c04c4e9ef56f89f9e3a746ad4de4077c +size 46171307 diff --git a/benchmark/5core/last_out/Health_and_Household.train.csv b/benchmark/5core/last_out/Health_and_Household.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..b56be16f349052729f390c64f941b0f1919984f4 --- /dev/null +++ b/benchmark/5core/last_out/Health_and_Household.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83861804487bbb1bae592e5ea1a99c82acc7488b6019754c302ab44b2fd900be +size 323920475 diff --git a/benchmark/5core/last_out/Health_and_Household.valid.csv b/benchmark/5core/last_out/Health_and_Household.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..7b7f0be17fac182b68ef539e46aef2fe239e4412 --- /dev/null +++ b/benchmark/5core/last_out/Health_and_Household.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b28050d8c5aa43e2a4e45f6a6817a316ec95ebe545b175062d74a198a6bfe9f +size 46171307 diff --git a/benchmark/5core/last_out/Home_and_Kitchen.test.csv b/benchmark/5core/last_out/Home_and_Kitchen.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..1fcaa7484ef2488856e243aa03a8f6bd74ca00a9 --- /dev/null +++ b/benchmark/5core/last_out/Home_and_Kitchen.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e93a85d244b2c6098b23a0d5875d4412a98fdd8c783f3f27343730b2e379e63e +size 169360232 diff --git a/benchmark/5core/last_out/Home_and_Kitchen.train.csv b/benchmark/5core/last_out/Home_and_Kitchen.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..fb58824e2ae41b85d249a95ab195fb27d6b826d4 --- /dev/null +++ b/benchmark/5core/last_out/Home_and_Kitchen.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0806da148a83104fa296b6ddd534dfeba7ef21a254d9ab7bb9bbb4e89d3bcecf +size 1297069007 diff --git a/benchmark/5core/last_out/Home_and_Kitchen.valid.csv b/benchmark/5core/last_out/Home_and_Kitchen.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..36e1606d6dbcca5754865123e8dc9d7d09433a3e --- /dev/null +++ b/benchmark/5core/last_out/Home_and_Kitchen.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad30da648bdc124bcd51a3466bc634010afcf7d738183d57af01f20081656600 +size 169360231 diff --git a/benchmark/5core/last_out/Industrial_and_Scientific.test.csv b/benchmark/5core/last_out/Industrial_and_Scientific.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..cd00277c14dcb3929bd561b76cce07db21f334f2 --- /dev/null +++ b/benchmark/5core/last_out/Industrial_and_Scientific.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cc26bc996aa2bd6fc1daf236febb66a6db42ebd0781e23fd7a0cd1dbf1d3b0e +size 2957269 diff --git a/benchmark/5core/last_out/Industrial_and_Scientific.train.csv b/benchmark/5core/last_out/Industrial_and_Scientific.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..744a7b6ffdf5ae834719cd53bbdae1c0fd8d2632 --- /dev/null +++ b/benchmark/5core/last_out/Industrial_and_Scientific.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa609a0c5ab6b4584d91393af2d68837fd3545b497d09db16cfd17d5ebf16069 +size 18039124 diff --git a/benchmark/5core/last_out/Industrial_and_Scientific.valid.csv b/benchmark/5core/last_out/Industrial_and_Scientific.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..6428ffdd5a14f1cc7a5a0f3e05d4a967f740fc48 --- /dev/null +++ b/benchmark/5core/last_out/Industrial_and_Scientific.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ea3f919fe80301a0eb14e19e1bd9b69998d244eab49b6afca478e4f8325029b +size 2957269 diff --git a/benchmark/5core/last_out/Kindle_Store.test.csv b/benchmark/5core/last_out/Kindle_Store.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..967e6ec5de37673cacf5d9ad695b9822caa82863 --- /dev/null +++ b/benchmark/5core/last_out/Kindle_Store.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ac1b9dd79d50f7f8f395717a4f131fb8883bc56b848beb68303717b602ac3cb +size 51745643 diff --git a/benchmark/5core/last_out/Kindle_Store.train.csv b/benchmark/5core/last_out/Kindle_Store.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..207657fa0d54f8c41548db6a75568178b9df9244 --- /dev/null +++ b/benchmark/5core/last_out/Kindle_Store.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6cd12f81bef33efdef23d402711423516c397630c9c9b701aaa324c799bb5d79 +size 828706402 diff --git a/benchmark/5core/last_out/Kindle_Store.valid.csv b/benchmark/5core/last_out/Kindle_Store.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..1392cabaeed2153b31f25f196435dd036dc9c63f --- /dev/null +++ b/benchmark/5core/last_out/Kindle_Store.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7380bd5c7497ee25d1cb9494afddd3ae3a6b6e75aea66ea96d096b590834d920 +size 51745643 diff --git a/benchmark/5core/last_out/Magazine_Subscriptions.test.csv b/benchmark/5core/last_out/Magazine_Subscriptions.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..d7d8a189581b94866e8ced3c26e2eb859f0ad25b --- /dev/null +++ b/benchmark/5core/last_out/Magazine_Subscriptions.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca90fb5d45dcf31bb1642a36559981253362962ae45f7caf9eccbc0c31250138 +size 1777 diff --git a/benchmark/5core/last_out/Magazine_Subscriptions.train.csv b/benchmark/5core/last_out/Magazine_Subscriptions.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..2a0c6ece81982e7f8041d8323a8517e80f4a42dd --- /dev/null +++ b/benchmark/5core/last_out/Magazine_Subscriptions.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9291a057e9f8e7b65bb172e915b729bed3801cb49bc90221979e0bf83bb5417 +size 6765 diff --git a/benchmark/5core/last_out/Magazine_Subscriptions.valid.csv b/benchmark/5core/last_out/Magazine_Subscriptions.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..ec4ca513493abf4957a5566c5f67a341a17f528f --- /dev/null +++ b/benchmark/5core/last_out/Magazine_Subscriptions.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e7df66d24392ba62d001ae3753df00a71ca7755d7ead6ab230a7853ebab84a9 +size 1777 diff --git a/benchmark/5core/last_out/Movies_and_TV.test.csv b/benchmark/5core/last_out/Movies_and_TV.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..7086fc35b853c82b62bff32b3f00e1bcc6d5b381 --- /dev/null +++ b/benchmark/5core/last_out/Movies_and_TV.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bdef314572d3ddc3b2a433ec4de167d80f473d31e700c3ffbfe389fe9a477b06 +size 38116587 diff --git a/benchmark/5core/last_out/Movies_and_TV.train.csv b/benchmark/5core/last_out/Movies_and_TV.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..1cbcd2c4dd94ab674ccdf6ba5e17d4d311864bc6 --- /dev/null +++ b/benchmark/5core/last_out/Movies_and_TV.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e20af00438a25dded8badd36aaebd00e95833c588cad8fa29e5917f34d7c8bab +size 355310160 diff --git a/benchmark/5core/last_out/Movies_and_TV.valid.csv b/benchmark/5core/last_out/Movies_and_TV.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..ba82344f795c80067caea4a64ca9ebb909d013e0 --- /dev/null +++ b/benchmark/5core/last_out/Movies_and_TV.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3e12cd40473a4858ff9a21a546ad8334778922028102ed8a534612144afab67 +size 38116228 diff --git a/benchmark/5core/last_out/Musical_Instruments.test.csv b/benchmark/5core/last_out/Musical_Instruments.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..0fe8512426181667b0ed2d132a23d47d7bf32dc1 --- /dev/null +++ b/benchmark/5core/last_out/Musical_Instruments.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6a47056a50746e30c48ecb4f12dc8569f5857dd3edffb6bf3ea4c8e8395ef3e +size 3331575 diff --git a/benchmark/5core/last_out/Musical_Instruments.train.csv b/benchmark/5core/last_out/Musical_Instruments.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..1f83b5550723dea4e4770d00388eee323027d74c --- /dev/null +++ b/benchmark/5core/last_out/Musical_Instruments.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57011953cb95406af0656fc273b948e03f72301ff987d75774bcf813b7ebc76c +size 23024713 diff --git a/benchmark/5core/last_out/Musical_Instruments.valid.csv b/benchmark/5core/last_out/Musical_Instruments.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..f2bb28ba49a675d835316f778dd8d6a0a78d42d6 --- /dev/null +++ b/benchmark/5core/last_out/Musical_Instruments.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bc030c196db45d02c2f08b3b8561de6d2b7af10720f5a648a29b80c2ba8041e +size 3331575 diff --git a/benchmark/5core/last_out/Office_Products.test.csv b/benchmark/5core/last_out/Office_Products.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..7a21c9619e1fe8954cc559ccccc4eaf9e632f936 --- /dev/null +++ b/benchmark/5core/last_out/Office_Products.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff3b02b0e32bde78fc7240153401f6e15639f51e958d291c25d4756d4ea9c701 +size 12952023 diff --git a/benchmark/5core/last_out/Office_Products.train.csv b/benchmark/5core/last_out/Office_Products.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..cc8f666e6a96940574918ef259d485103cd82250 --- /dev/null +++ b/benchmark/5core/last_out/Office_Products.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc8da88a5c039be17b22a93e680b28aa8f10507276d31bd911d3acc824cdaf72 +size 78553618 diff --git a/benchmark/5core/last_out/Office_Products.valid.csv b/benchmark/5core/last_out/Office_Products.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..17a2957aa4e269927408ea3fde4b9b89c7c86305 --- /dev/null +++ b/benchmark/5core/last_out/Office_Products.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0df9a03970b58e7cb2ac003d624d8c4f81ad564f05ab4515051843773b195ad9 +size 12952023 diff --git a/benchmark/5core/last_out/Patio_Lawn_and_Garden.test.csv b/benchmark/5core/last_out/Patio_Lawn_and_Garden.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..2ace672cde5048590e2a8d05a2477de4c5b020d7 --- /dev/null +++ b/benchmark/5core/last_out/Patio_Lawn_and_Garden.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ae8de538a700f446444eab7cb989613d0d8a40a7ad5c7667c3514d281698a5c +size 24165795 diff --git a/benchmark/5core/last_out/Patio_Lawn_and_Garden.train.csv b/benchmark/5core/last_out/Patio_Lawn_and_Garden.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..091b48fb8a2efd96994e62e4a427df63b9f40815 --- /dev/null +++ b/benchmark/5core/last_out/Patio_Lawn_and_Garden.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d230beec2cfdc5c2633c62813f7e521512576d754b10a3d9d599816deff4f6c9 +size 151265001 diff --git a/benchmark/5core/last_out/Patio_Lawn_and_Garden.valid.csv b/benchmark/5core/last_out/Patio_Lawn_and_Garden.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..646635132dd9b4e4a5a69e094594bfd75c81502e --- /dev/null +++ b/benchmark/5core/last_out/Patio_Lawn_and_Garden.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0bf0607675448cb7224dc8ba386c41ccd625934cc6b3c25ba56bd12f9e45614 +size 24165794 diff --git a/benchmark/5core/last_out/Pet_Supplies.test.csv b/benchmark/5core/last_out/Pet_Supplies.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..eb2ae406c85ec0b497a63f625d2be8507e1d16c3 --- /dev/null +++ b/benchmark/5core/last_out/Pet_Supplies.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e27dd8f808f56570b9834f9f8986c6c29d79de711c85cef3b2a0dee64bb005b +size 34498553 diff --git a/benchmark/5core/last_out/Pet_Supplies.train.csv b/benchmark/5core/last_out/Pet_Supplies.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..81ce288c1446de3551c0eaa62b9d4b159c220cbb --- /dev/null +++ b/benchmark/5core/last_out/Pet_Supplies.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5dc8ed51524aede4e3b749f3b05f8b30faffa03cc3a47dde1fafe8cd7810f6c +size 237093673 diff --git a/benchmark/5core/last_out/Pet_Supplies.valid.csv b/benchmark/5core/last_out/Pet_Supplies.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..5822332ba6df1646f5896e7584da8913f72c0124 --- /dev/null +++ b/benchmark/5core/last_out/Pet_Supplies.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e4fa444ce1a627842573861748c588689a413a37bf8f8c10cd113fe77bc5e03 +size 34498553 diff --git a/benchmark/5core/last_out/Software.test.csv b/benchmark/5core/last_out/Software.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..2d5c386d558233778b4be3130751b5d5a99f6ebb --- /dev/null +++ b/benchmark/5core/last_out/Software.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d08e55bf35944a3d93e07326c1623585a3fc070b1a338599186a825c487bde17 +size 8491035 diff --git a/benchmark/5core/last_out/Software.train.csv b/benchmark/5core/last_out/Software.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..c42214f72aebc2da174aedc3b0f4c6b3491bbbed --- /dev/null +++ b/benchmark/5core/last_out/Software.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4fa5cd0be6d8ef40b9778670f370b85f7c801eece0819a4ec421a78117a149d6 +size 57075093 diff --git a/benchmark/5core/last_out/Software.valid.csv b/benchmark/5core/last_out/Software.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..4ef8ce7a3c9f0163dc5afc36e832fdc49bbd7b9e --- /dev/null +++ b/benchmark/5core/last_out/Software.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30c6d868be9ce4fbc16070ddee5948460c0dbc81e445430b7380a7e91834096b +size 8491035 diff --git a/benchmark/5core/last_out/Sports_and_Outdoors.test.csv b/benchmark/5core/last_out/Sports_and_Outdoors.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..59972f368ed2805ab1f1b01296e9e7766b7c489b --- /dev/null +++ b/benchmark/5core/last_out/Sports_and_Outdoors.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0790c6dbbb848315a539dbdd3da6c51fb67c22e7d2113ff983e2a7898a721873 +size 23766941 diff --git a/benchmark/5core/last_out/Sports_and_Outdoors.train.csv b/benchmark/5core/last_out/Sports_and_Outdoors.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..359bbf142fd86f272fde6b336b7c46a00861e32f --- /dev/null +++ b/benchmark/5core/last_out/Sports_and_Outdoors.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6ff8d942332576001a40a180a6f5c9cf0eaa329ca720a726a5be223de75fdc61 +size 153851514 diff --git a/benchmark/5core/last_out/Sports_and_Outdoors.valid.csv b/benchmark/5core/last_out/Sports_and_Outdoors.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..fe612a253693bd927db3f6a590bca0836c7f4af7 --- /dev/null +++ b/benchmark/5core/last_out/Sports_and_Outdoors.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6b93ae6ac44989c18388d873ef88690196ee81c0be93b8f2ae9d3962c62d900 +size 23766941 diff --git a/benchmark/5core/last_out/Tools_and_Home_Improvement.test.csv b/benchmark/5core/last_out/Tools_and_Home_Improvement.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..dd6a3a47fc0dad8da39cb68067a05d7cc18bb8e9 --- /dev/null +++ b/benchmark/5core/last_out/Tools_and_Home_Improvement.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dbf07a8b419b78069e0d35b90b1b66c1a3d19b7552bcf9520c2ec74f9d7d019 +size 48839053 diff --git a/benchmark/5core/last_out/Tools_and_Home_Improvement.train.csv b/benchmark/5core/last_out/Tools_and_Home_Improvement.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..9bbff93e1c990f541788b9c66a5f93c0b064e6be --- /dev/null +++ b/benchmark/5core/last_out/Tools_and_Home_Improvement.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5460707b015befa6bea153b2e1d57b3f238db366c9fa9a8a974463b6a45def34 +size 360016665 diff --git a/benchmark/5core/last_out/Tools_and_Home_Improvement.valid.csv b/benchmark/5core/last_out/Tools_and_Home_Improvement.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..4f206da4eabf9143fd69169dfb8de88d83096317 --- /dev/null +++ b/benchmark/5core/last_out/Tools_and_Home_Improvement.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a410beb95c987249bce1b4ca400b71163230c2ef05cc1d49478ea85de405cf2 +size 48839047 diff --git a/benchmark/5core/last_out/Toys_and_Games.test.csv b/benchmark/5core/last_out/Toys_and_Games.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..162f4cb5781aef676ea1175de636597a1058b86a --- /dev/null +++ b/benchmark/5core/last_out/Toys_and_Games.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7d4fcfd3a0801b57a9911d22c821056f3eb86a9a813cd0a886dbed5974ddc77 +size 25071475 diff --git a/benchmark/5core/last_out/Toys_and_Games.train.csv b/benchmark/5core/last_out/Toys_and_Games.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..85160ec18afa7f438fdfcd86adb4771772025281 --- /dev/null +++ b/benchmark/5core/last_out/Toys_and_Games.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16679c494060016f5b306a9b75e86c0ec69727e068885079c4937a75b3e6b1d0 +size 173860243 diff --git a/benchmark/5core/last_out/Toys_and_Games.valid.csv b/benchmark/5core/last_out/Toys_and_Games.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..54eadaca49eb7b61dfde18bc981b18b97afa9bd7 --- /dev/null +++ b/benchmark/5core/last_out/Toys_and_Games.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d49706e062205e4aa387902a8f8b27209e535ba90368200bfd363e5165f1a46 +size 25071475 diff --git a/benchmark/5core/last_out/Unknown.test.csv b/benchmark/5core/last_out/Unknown.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..4df73699089e25a2d2e554c27051dfb7ea438398 --- /dev/null +++ b/benchmark/5core/last_out/Unknown.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40fda41e5fe681abec73910d386fe7425f54c562ab594c11b5787417bcb442c6 +size 92777113 diff --git a/benchmark/5core/last_out/Unknown.train.csv b/benchmark/5core/last_out/Unknown.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5dfb0f5584980b395516f1f87db257d08ba78a08 --- /dev/null +++ b/benchmark/5core/last_out/Unknown.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1a3824fa9850c681db9e80ce6cb5a6877590f2c63007a07616a37b6f6e1c389 +size 660711576 diff --git a/benchmark/5core/last_out/Unknown.valid.csv b/benchmark/5core/last_out/Unknown.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..112fffb11462f5aae972b452d53a94a1524bf64e --- /dev/null +++ b/benchmark/5core/last_out/Unknown.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75019814fb906fc5b73e9c6789517500bd161eae7709700deaa3e524ea45c906 +size 92777074 diff --git a/benchmark/5core/last_out/Video_Games.test.csv b/benchmark/5core/last_out/Video_Games.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..065b4337d50d44348658301a11c33ac5daacac65 --- /dev/null +++ b/benchmark/5core/last_out/Video_Games.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88a7653b41d20e41c3ccb2424d88b6982c5e2a666dd94c4c391b9cce91e96af3 +size 5496186 diff --git a/benchmark/5core/last_out/Video_Games.train.csv b/benchmark/5core/last_out/Video_Games.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..bb4e5e305ae0976b9965c3f88b3b075f1f52cbbf --- /dev/null +++ b/benchmark/5core/last_out/Video_Games.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:abe955af35f547bf3f1457243ed9aa2747b89f8212b6851600dd89f29e2481c2 +size 36251811 diff --git a/benchmark/5core/last_out/Video_Games.valid.csv b/benchmark/5core/last_out/Video_Games.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..356d454460cacbfd4d1d051677dccb4ba59d6313 --- /dev/null +++ b/benchmark/5core/last_out/Video_Games.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4d270bb97f910ed993a6e0bd58173d4c977e0ed229278e20eb1cd7c68ce1268 +size 5496128 diff --git a/benchmark/5core/last_out_w_his/All_Beauty.test.csv b/benchmark/5core/last_out_w_his/All_Beauty.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c0a2b0c4308d373dbdb634d245d29dc5117e9783 --- /dev/null +++ b/benchmark/5core/last_out_w_his/All_Beauty.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36ff4fd64265a3efee0bc9335a95b307ecd490816851510d64ed692f2bad3310 +size 39851 diff --git a/benchmark/5core/last_out_w_his/All_Beauty.train.csv b/benchmark/5core/last_out_w_his/All_Beauty.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..0df845c9e908490068c70c0d41396968edf785d3 --- /dev/null +++ b/benchmark/5core/last_out_w_his/All_Beauty.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1874a8a18e43294eb4666254877b9c867c1b62a9fc5a9246e4f4e942ab854b75 +size 273718 diff --git a/benchmark/5core/last_out_w_his/All_Beauty.valid.csv b/benchmark/5core/last_out_w_his/All_Beauty.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..194f92804679f6b9458a4750fe43fb4d1b08e5fe --- /dev/null +++ b/benchmark/5core/last_out_w_his/All_Beauty.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bcc6b7fb4f507e514c3f2194777835b52a8aeb5df5a677eae688b7136610c3f +size 37068 diff --git a/benchmark/5core/last_out_w_his/Arts_Crafts_and_Sewing.test.csv b/benchmark/5core/last_out_w_his/Arts_Crafts_and_Sewing.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..81c9e4bcb814de1194d6913294cd92e05200d856 --- /dev/null +++ b/benchmark/5core/last_out_w_his/Arts_Crafts_and_Sewing.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16c701c0ccbb815ab3d1565f60a739d0bbebb62b88207f4adf33312c8955d469 +size 28923394 diff --git a/benchmark/5core/last_out_w_his/Arts_Crafts_and_Sewing.train.csv b/benchmark/5core/last_out_w_his/Arts_Crafts_and_Sewing.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..45fa5e6beca457f1c227f41ce27bbd2f77b00a71 --- /dev/null +++ b/benchmark/5core/last_out_w_his/Arts_Crafts_and_Sewing.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb46891fe3bcc54f8d68e9e7a4e15130573c637a4a31ddbd6f7da1d25121341a +size 207963246 diff --git a/benchmark/5core/last_out_w_his/Arts_Crafts_and_Sewing.valid.csv b/benchmark/5core/last_out_w_his/Arts_Crafts_and_Sewing.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..dcf0851984d8e73e06308f1c14861397be45324d --- /dev/null +++ b/benchmark/5core/last_out_w_his/Arts_Crafts_and_Sewing.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f04ace95353c8c9b5588af7695a15aed2408dacdaaa1c0439b4b71bcd1f3fa6 +size 26753248 diff --git a/benchmark/5core/last_out_w_his/Automotive.test.csv b/benchmark/5core/last_out_w_his/Automotive.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..06a90cc9663d78fe0be45cdbf5f5e540a7b4c90f --- /dev/null +++ b/benchmark/5core/last_out_w_his/Automotive.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f363a92e3db5a0406db375dd2eabf02cbc7437a0dd6839eb4b6c4baa54d97345 +size 96505198 diff --git a/benchmark/5core/last_out_w_his/Automotive.train.csv b/benchmark/5core/last_out_w_his/Automotive.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..ff1e8f9f2f03b58638ad3dcbade73cb79b72b769 --- /dev/null +++ b/benchmark/5core/last_out_w_his/Automotive.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed6273b68ffc58c4276bb0f59ba4b05a2397cab4613407e5f3981b3601533832 +size 681452463 diff --git a/benchmark/5core/last_out_w_his/Automotive.valid.csv b/benchmark/5core/last_out_w_his/Automotive.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..e7ab13ed3c63cb9f7ee1259d3dc0e7ab9a7345d1 --- /dev/null +++ b/benchmark/5core/last_out_w_his/Automotive.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cdb39a5b27b058db4bb387c8235869f2272e483fc1d311420d3886c09926130 +size 89551680 diff --git a/benchmark/5core/last_out_w_his/Baby_Products.test.csv b/benchmark/5core/last_out_w_his/Baby_Products.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c97e7a1f9205b5d65e8e8871e88c4064a25bd16b --- /dev/null +++ b/benchmark/5core/last_out_w_his/Baby_Products.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11852ab53f93cb97ce8c7c15dc3a2cb8b5e46fcb17ccd4b314a02011e20cf649 +size 20738589 diff --git a/benchmark/5core/last_out_w_his/Baby_Products.train.csv b/benchmark/5core/last_out_w_his/Baby_Products.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..a421957a57107b3a5d5a7af5987afe424b6b26a6 --- /dev/null +++ b/benchmark/5core/last_out_w_his/Baby_Products.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03f61749f4ecb52c05a0cd43fbac4d70ad77f529bbc0b137ad71b284949dd6e6 +size 123239961 diff --git a/benchmark/5core/last_out_w_his/Baby_Products.valid.csv b/benchmark/5core/last_out_w_his/Baby_Products.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..0ffd3693f8544f6bd00b880f2d2b397a75778dfb --- /dev/null +++ b/benchmark/5core/last_out_w_his/Baby_Products.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e24e13563fb1a31e9bc3136b9d95047f5ee9ead3f754ca3e2f8a356465be44b +size 19080042 diff --git a/benchmark/5core/last_out_w_his/Beauty_and_Personal_Care.test.csv b/benchmark/5core/last_out_w_his/Beauty_and_Personal_Care.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..ec823889e27128200b0f5ee72599901b9fb76a01 --- /dev/null +++ b/benchmark/5core/last_out_w_his/Beauty_and_Personal_Care.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a1ccfef64b066a466bf60fb097f1a763c40249c732962bd14b9f704272c644e +size 107159106 diff --git a/benchmark/5core/last_out_w_his/Beauty_and_Personal_Care.train.csv b/benchmark/5core/last_out_w_his/Beauty_and_Personal_Care.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..92ff79a7c59e79596ed8b3aea5318447e2058ab6 --- /dev/null +++ b/benchmark/5core/last_out_w_his/Beauty_and_Personal_Care.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88f183ed77d788a4a4101dddd2f9660a37d351baf37f3321bf56d8c7c76a21bc +size 1374382690 diff --git a/benchmark/5core/last_out_w_his/Beauty_and_Personal_Care.valid.csv b/benchmark/5core/last_out_w_his/Beauty_and_Personal_Care.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..95100e104d7d3bdfebb4ae7f2f1d5fb5e6bf1ddc --- /dev/null +++ b/benchmark/5core/last_out_w_his/Beauty_and_Personal_Care.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:225e3510039387494321d003c60d04a07dc69ee817058e64816125f552d58211 +size 99133770 diff --git a/benchmark/5core/last_out_w_his/Books.test.csv b/benchmark/5core/last_out_w_his/Books.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..de1cb1ee69b1718fd35b513c342c2f20770112e7 --- /dev/null +++ b/benchmark/5core/last_out_w_his/Books.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f58ef3cb57789229030f46d1325b93c492078050b9cf6d2b9fd69fe94f5ef985 +size 140858541 diff --git a/benchmark/5core/last_out_w_his/Books.train.csv b/benchmark/5core/last_out_w_his/Books.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..a0b2bd7ca7de2b9442f7fe4beb66ae2abbf8e395 --- /dev/null +++ b/benchmark/5core/last_out_w_his/Books.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab49df663e50ae710e92772aad762bfb599708fa0e35af70f449d47c3fcccd99 +size 3287477186 diff --git a/benchmark/5core/last_out_w_his/Books.valid.csv b/benchmark/5core/last_out_w_his/Books.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..9bd1cdf52068c1bd03a0bdaa212e8a9aba929919 --- /dev/null +++ b/benchmark/5core/last_out_w_his/Books.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:15912d8d5e25731764b34e64e424b8ad6105c49dfa94d4fbbd24dbe59d53bc0c +size 132317578 diff --git a/benchmark/5core/last_out_w_his/CDs_and_Vinyl.test.csv b/benchmark/5core/last_out_w_his/CDs_and_Vinyl.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..f3d7686593850a85cd6f656d6386229367a10565 --- /dev/null +++ b/benchmark/5core/last_out_w_his/CDs_and_Vinyl.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b45061e6035a71491971b6cd2005fd12f8f9a2ce2a1ccde8dde59e70a215aebb +size 22900073 diff --git a/benchmark/5core/last_out_w_his/CDs_and_Vinyl.train.csv b/benchmark/5core/last_out_w_his/CDs_and_Vinyl.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..29335ab2f55afded2924262b0136d2bb425628cc --- /dev/null +++ b/benchmark/5core/last_out_w_his/CDs_and_Vinyl.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:616233a542725a9f33b983f311d0ee68b2a01d043213a29b4600448cc402e870 +size 495442613 diff --git a/benchmark/5core/last_out_w_his/CDs_and_Vinyl.valid.csv b/benchmark/5core/last_out_w_his/CDs_and_Vinyl.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..0df5e3a9ad9d98a858d936f08bc813a489fbab27 --- /dev/null +++ b/benchmark/5core/last_out_w_his/CDs_and_Vinyl.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfcce6bcb247d1e5c9028b9ed4b8ce8039486c2ccc0e6daf41644d8de8b5300c +size 21536679 diff --git a/benchmark/5core/last_out_w_his/Cell_Phones_and_Accessories.test.csv b/benchmark/5core/last_out_w_his/Cell_Phones_and_Accessories.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..d01634737610a98fbc50a24a71e827e4bf228c56 --- /dev/null +++ b/benchmark/5core/last_out_w_his/Cell_Phones_and_Accessories.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78f80b5c45e00f0971e2f0245e955a7f4b49d18013ee2939213fabb2a437d915 +size 48187753 diff --git a/benchmark/5core/last_out_w_his/Cell_Phones_and_Accessories.train.csv b/benchmark/5core/last_out_w_his/Cell_Phones_and_Accessories.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..bc9b8e6cc0a8d29fd9f9dc222ff5ecdc299ad180 --- /dev/null +++ b/benchmark/5core/last_out_w_his/Cell_Phones_and_Accessories.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:437aa592a61a33e875043b349f871f0b9c107169c87b681022f79b6267e13331 +size 196672760 diff --git a/benchmark/5core/last_out_w_his/Cell_Phones_and_Accessories.valid.csv b/benchmark/5core/last_out_w_his/Cell_Phones_and_Accessories.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..6b00beb2ec8c5ac086fe046b4ecfd5c8c7e78d52 --- /dev/null +++ b/benchmark/5core/last_out_w_his/Cell_Phones_and_Accessories.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca0fb2d342d087602c8b48857c0ef94d7da5b2011b687d865288b5a1b1ae7ebd +size 43996764 diff --git a/benchmark/5core/last_out_w_his/Clothing_Shoes_and_Jewelry.test.csv b/benchmark/5core/last_out_w_his/Clothing_Shoes_and_Jewelry.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..99d82fd5648b6d3841f3a1c3e800a73d6158a606 --- /dev/null +++ b/benchmark/5core/last_out_w_his/Clothing_Shoes_and_Jewelry.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b4b1047ef6a2076b897b789580bac5c80f085f6f7c7da44b5fc9b63b97d5a10 +size 372802203 diff --git a/benchmark/5core/last_out_w_his/Clothing_Shoes_and_Jewelry.train.csv b/benchmark/5core/last_out_w_his/Clothing_Shoes_and_Jewelry.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..f99bfe9218afdf4bb7de0752da10126d484567b1 --- /dev/null +++ b/benchmark/5core/last_out_w_his/Clothing_Shoes_and_Jewelry.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:389774fef7962f9c2b6ed2f44c818f1d061364e84cca1dd17a1e14aaac267df6 +size 2860543012 diff --git a/benchmark/5core/last_out_w_his/Clothing_Shoes_and_Jewelry.valid.csv b/benchmark/5core/last_out_w_his/Clothing_Shoes_and_Jewelry.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..7dd5e859b41a1a56880f1af1f2fd5bb8e3f7b18a --- /dev/null +++ b/benchmark/5core/last_out_w_his/Clothing_Shoes_and_Jewelry.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94b00815eb883ee41ceea08229139c5a0711ee2b6b212a64ecff1450044a21ba +size 345027412 diff --git a/benchmark/5core/last_out_w_his/Electronics.test.csv b/benchmark/5core/last_out_w_his/Electronics.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..48e7aa0acf1443d2f8fca03c7eb6c02afd8e1269 --- /dev/null +++ b/benchmark/5core/last_out_w_his/Electronics.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73ceadbc1b6a99abb18f8e91f5543c4478e4215380a04c9bbec888fbccc5ca24 +size 247337297 diff --git a/benchmark/5core/last_out_w_his/Electronics.train.csv b/benchmark/5core/last_out_w_his/Electronics.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..1402e8169a2edc12ba93b75d5c31e94c7bc9a39e --- /dev/null +++ b/benchmark/5core/last_out_w_his/Electronics.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7415672b510e4a6ada7fe642e5c468b2e06818aca77745671c7d948d48c8625 +size 1831286486 diff --git a/benchmark/5core/last_out_w_his/Electronics.valid.csv b/benchmark/5core/last_out_w_his/Electronics.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..6ab8a308afba7b44b9e7c6a17d21791050671797 --- /dev/null +++ b/benchmark/5core/last_out_w_his/Electronics.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7ae96f03c670f8b7ca7b38350502bc20be3d6c868de93d112be77c5c8c7b3f7 +size 229286007 diff --git a/benchmark/5core/last_out_w_his/Gift_Cards.test.csv b/benchmark/5core/last_out_w_his/Gift_Cards.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..2e4a924a1b54f7307a1e653e5844ac02a078fece --- /dev/null +++ b/benchmark/5core/last_out_w_his/Gift_Cards.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f2431980cde8a25e4b8d4cc057e886ff9b3d33002ec07350ddf60c7a07ed83c5 +size 44483 diff --git a/benchmark/5core/last_out_w_his/Gift_Cards.train.csv b/benchmark/5core/last_out_w_his/Gift_Cards.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..af2ccb541ae4a861fb1026f93872670de0ed09fc --- /dev/null +++ b/benchmark/5core/last_out_w_his/Gift_Cards.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf66fbd376aa9ffa1725a103c2470cc8147a01beec079445a1e2d4be1c82224d +size 142727 diff --git a/benchmark/5core/last_out_w_his/Gift_Cards.valid.csv b/benchmark/5core/last_out_w_his/Gift_Cards.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..85992a18db23c20ca04aee60e79db15c642274c3 --- /dev/null +++ b/benchmark/5core/last_out_w_his/Gift_Cards.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c1935a1cc8e6a9ea687ec9e46be11fad5e253f5d2c92a1b76b67d787e64e16f +size 40336 diff --git a/benchmark/5core/last_out_w_his/Grocery_and_Gourmet_Food.test.csv b/benchmark/5core/last_out_w_his/Grocery_and_Gourmet_Food.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..62924c2c95fd62b51142e19255a07683e771b468 --- /dev/null +++ b/benchmark/5core/last_out_w_his/Grocery_and_Gourmet_Food.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35d5af6f1dfc2eda81aceaef34d6be567254d44855bd46f93935b45b2896a3d5 +size 62460030 diff --git a/benchmark/5core/last_out_w_his/Grocery_and_Gourmet_Food.train.csv b/benchmark/5core/last_out_w_his/Grocery_and_Gourmet_Food.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..8a77f6e9c119d43f60bc868ebc4a8990088af65b --- /dev/null +++ b/benchmark/5core/last_out_w_his/Grocery_and_Gourmet_Food.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7653760f004a9037ba838705a59b7b420e822bb738ff35ba7ea30b076285a7dd +size 675572935 diff --git a/benchmark/5core/last_out_w_his/Grocery_and_Gourmet_Food.valid.csv b/benchmark/5core/last_out_w_his/Grocery_and_Gourmet_Food.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..17fbcf19ad9c6b9bb46758f6e52fcfe9ed8598dc --- /dev/null +++ b/benchmark/5core/last_out_w_his/Grocery_and_Gourmet_Food.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bf38db6c1190d0c86c7181e64ad4419b99ca37341714645f32c911594f48368 +size 58007670 diff --git a/benchmark/5core/last_out_w_his/Health_and_Household.test.csv b/benchmark/5core/last_out_w_his/Health_and_Household.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..4e706f99ae81ef59b9352cc59a642750e23ce5c7 --- /dev/null +++ b/benchmark/5core/last_out_w_his/Health_and_Household.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afa292ece943780bd0a10a63015e3f8b3846a6d17db5b9cfccecf4a7e890a41d +size 116356793 diff --git a/benchmark/5core/last_out_w_his/Health_and_Household.train.csv b/benchmark/5core/last_out_w_his/Health_and_Household.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..0dd2b3a7c380caaacd4e026e22cb9b4f85389955 --- /dev/null +++ b/benchmark/5core/last_out_w_his/Health_and_Household.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5207c5ac1939c8590c8990a58b27c02bfc612da1e5dce4c4231801b6982d993f +size 1136871199 diff --git a/benchmark/5core/last_out_w_his/Health_and_Household.valid.csv b/benchmark/5core/last_out_w_his/Health_and_Household.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..5d8f4128131870f76179267f178715d03841ac8f --- /dev/null +++ b/benchmark/5core/last_out_w_his/Health_and_Household.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3007230eabeee9bd2eb1d8aceb5bc0e4c853f8fd08ad4f6d858191f0cd0487a1 +size 107600199 diff --git a/benchmark/5core/last_out_w_his/Home_and_Kitchen.test.csv b/benchmark/5core/last_out_w_his/Home_and_Kitchen.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..45d6a5b6900d09dbd1540cf4a8c93bdc16977f52 --- /dev/null +++ b/benchmark/5core/last_out_w_his/Home_and_Kitchen.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67cb263b300df95ba57e29fcfff7e66372ae6a9c6387cdae89cef3dbe51568ff +size 447468829 diff --git a/benchmark/5core/last_out_w_his/Home_and_Kitchen.train.csv b/benchmark/5core/last_out_w_his/Home_and_Kitchen.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..9478a2304563553af6f1fd7b5bba76fe1920f4de --- /dev/null +++ b/benchmark/5core/last_out_w_his/Home_and_Kitchen.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0581ccd80ab31e7ca658eeb9bd987534b96fcb7d958a79575aac81712cfd28e8 +size 3861103275 diff --git a/benchmark/5core/last_out_w_his/Home_and_Kitchen.valid.csv b/benchmark/5core/last_out_w_his/Home_and_Kitchen.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..c951eb8b37b187a31ece7242c88fb501a0b0f7a8 --- /dev/null +++ b/benchmark/5core/last_out_w_his/Home_and_Kitchen.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:35876e3e8ee7c37fa8bd598f7cd79da98dd66a186f4b9602a35a6a89d1e3dfc6 +size 415348817 diff --git a/benchmark/5core/last_out_w_his/Industrial_and_Scientific.test.csv b/benchmark/5core/last_out_w_his/Industrial_and_Scientific.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..69d652cfafce9f65bdf8f393e001cf4e8e2787f1 --- /dev/null +++ b/benchmark/5core/last_out_w_his/Industrial_and_Scientific.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:025cd874564c1191b48c62601ef55ce5e55154e19c38a6d05c395574a6175a9b +size 6938859 diff --git a/benchmark/5core/last_out_w_his/Industrial_and_Scientific.train.csv b/benchmark/5core/last_out_w_his/Industrial_and_Scientific.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..f58944dbd07119fcc5a3b6789f9d0a958e090571 --- /dev/null +++ b/benchmark/5core/last_out_w_his/Industrial_and_Scientific.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a673d20e3c00cecee7f4639c086ab02ca4f2f59f8a5889782900c913a66dc91f +size 37243768 diff --git a/benchmark/5core/last_out_w_his/Industrial_and_Scientific.valid.csv b/benchmark/5core/last_out_w_his/Industrial_and_Scientific.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..7f4223b913e016d4f81662833ca357e05ac899ea --- /dev/null +++ b/benchmark/5core/last_out_w_his/Industrial_and_Scientific.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:420b8271bf504d5409c70473db6656835611c407c3a8ae574ed47ae216281d7c +size 6378024 diff --git a/benchmark/5core/last_out_w_his/Kindle_Store.test.csv b/benchmark/5core/last_out_w_his/Kindle_Store.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..ff3dae89fdfe88fc663aa8b0be9e224686d9e3e0 --- /dev/null +++ b/benchmark/5core/last_out_w_his/Kindle_Store.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9b21cfe206032b3b93e2b68501c8a40ee46ecbf0d294c0116c91e99cc401bdf +size 218710449 diff --git a/benchmark/5core/last_out_w_his/Kindle_Store.train.csv b/benchmark/5core/last_out_w_his/Kindle_Store.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..2786a12be4601feba1fd7c8937193013412475a5 --- /dev/null +++ b/benchmark/5core/last_out_w_his/Kindle_Store.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b82ca21504b58a684e643f1feb43b82751c62c05ae59353be567ce6b80a45f10 +size 11480669554 diff --git a/benchmark/5core/last_out_w_his/Kindle_Store.valid.csv b/benchmark/5core/last_out_w_his/Kindle_Store.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..0465cdbd94fc973037ee15556c5dae81d7b5b9e1 --- /dev/null +++ b/benchmark/5core/last_out_w_his/Kindle_Store.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7df750cdf6927cf2eed2a7fdd77a18a8870112f198f58e2f678ff164f127770c +size 208896645 diff --git a/benchmark/5core/last_out_w_his/Magazine_Subscriptions.test.csv b/benchmark/5core/last_out_w_his/Magazine_Subscriptions.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..a2ba15da20a1a62416fcb7795d19edc865552e43 --- /dev/null +++ b/benchmark/5core/last_out_w_his/Magazine_Subscriptions.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3bb274aa4e4edf1e81f7b389ee6f531fa7d29e481abb034ab0d9f108b2a64f36 +size 3391 diff --git a/benchmark/5core/last_out_w_his/Magazine_Subscriptions.train.csv b/benchmark/5core/last_out_w_his/Magazine_Subscriptions.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..88a49614234b15564a75f1c80dfd3464a0b4e7a8 --- /dev/null +++ b/benchmark/5core/last_out_w_his/Magazine_Subscriptions.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3dc8aa0d439f785fb4aad1624bbf7e6634c829bb09f8b0ee3b4c6105f831c61 +size 8893 diff --git a/benchmark/5core/last_out_w_his/Magazine_Subscriptions.valid.csv b/benchmark/5core/last_out_w_his/Magazine_Subscriptions.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..ce637dfebd6b8b41d04327ed649fd4a03b2dc1d2 --- /dev/null +++ b/benchmark/5core/last_out_w_his/Magazine_Subscriptions.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38030e817b84c82103015c4c043302838d5784970cfe225cc51dac74b0c1d94c +size 3061 diff --git a/benchmark/5core/last_out_w_his/Movies_and_TV.test.csv b/benchmark/5core/last_out_w_his/Movies_and_TV.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..e78d4f002ab34cca6d0d65ed0964635d6f228fce --- /dev/null +++ b/benchmark/5core/last_out_w_his/Movies_and_TV.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cad4ba05c8e3910936eb7406a6e7cd1aa784d029af6ad0ef6a6806c9b78a6f8 +size 112739781 diff --git a/benchmark/5core/last_out_w_his/Movies_and_TV.train.csv b/benchmark/5core/last_out_w_his/Movies_and_TV.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..b2bbf5106fe3a19f3da327baa777130abbc300ab --- /dev/null +++ b/benchmark/5core/last_out_w_his/Movies_and_TV.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11e27e05589c8d6e3484f2471ac20f855d9cfbd134e34d7bcbae4e6352534a44 +size 1928445355 diff --git a/benchmark/5core/last_out_w_his/Movies_and_TV.valid.csv b/benchmark/5core/last_out_w_his/Movies_and_TV.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..676c0f372ef23e8f836f94c79bd0445b6c4d4e4b --- /dev/null +++ b/benchmark/5core/last_out_w_his/Movies_and_TV.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8f3f0ed04769d998d4c47fd2e49925177e009a58893048aa02dcbab45517e070 +size 105510189 diff --git a/benchmark/5core/last_out_w_his/Musical_Instruments.test.csv b/benchmark/5core/last_out_w_his/Musical_Instruments.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..a13f5a81e7ff06946a7e28eebf2a0403ac76df30 --- /dev/null +++ b/benchmark/5core/last_out_w_his/Musical_Instruments.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74e7d20eb8586a1b55fdd60afbf64498629793ad1056fa99ce2c2b672332cde3 +size 8329950 diff --git a/benchmark/5core/last_out_w_his/Musical_Instruments.train.csv b/benchmark/5core/last_out_w_his/Musical_Instruments.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..c6ad6ff39541554081a2cd2cd475e2abda673226 --- /dev/null +++ b/benchmark/5core/last_out_w_his/Musical_Instruments.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79539d2759a653f1f1e882a07bf7f2984cdd9326a7cbb3276d9f7084fe5f0527 +size 52764417 diff --git a/benchmark/5core/last_out_w_his/Musical_Instruments.valid.csv b/benchmark/5core/last_out_w_his/Musical_Instruments.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..0e93662ede1fa0b7deaa543990d40558f5b801cc --- /dev/null +++ b/benchmark/5core/last_out_w_his/Musical_Instruments.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee07113a09ed45e619c49efcb11e9e3ba3f23344a54340e9c09e771084623520 +size 7698121 diff --git a/benchmark/5core/last_out_w_his/Office_Products.test.csv b/benchmark/5core/last_out_w_his/Office_Products.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..36977976c5dd20a40ff2dd12a26ac413e33df485 --- /dev/null +++ b/benchmark/5core/last_out_w_his/Office_Products.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:daab43155bf7526f56cd22859e8b456bd3c639856ac596cf15296e0dcb92b925 +size 30305301 diff --git a/benchmark/5core/last_out_w_his/Office_Products.train.csv b/benchmark/5core/last_out_w_his/Office_Products.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..20e1edbe677db342db4eb81a72222f7c5ccb7e43 --- /dev/null +++ b/benchmark/5core/last_out_w_his/Office_Products.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:464e68f54e29526513047ff75ba021c38c67af352050d403f672ae625ae407f7 +size 172999260 diff --git a/benchmark/5core/last_out_w_his/Office_Products.valid.csv b/benchmark/5core/last_out_w_his/Office_Products.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..8a22c0f1a6b722ab7f6af62ab9c6d99b506f257f --- /dev/null +++ b/benchmark/5core/last_out_w_his/Office_Products.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:363bb8bcfd0139e065fd3ac5372d24caa49a15cffd624a5d508748513c47c01e +size 27848913 diff --git a/benchmark/5core/last_out_w_his/Patio_Lawn_and_Garden.test.csv b/benchmark/5core/last_out_w_his/Patio_Lawn_and_Garden.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..a86b29b02d67eff2cb41768dbd6be2f060130326 --- /dev/null +++ b/benchmark/5core/last_out_w_his/Patio_Lawn_and_Garden.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bfa00080453edd29a3f0433c414acfe11d460b05b1a77d1d789e9b7987508ce +size 57435622 diff --git a/benchmark/5core/last_out_w_his/Patio_Lawn_and_Garden.train.csv b/benchmark/5core/last_out_w_his/Patio_Lawn_and_Garden.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..802d7e8a6aefb4a58cdb8efd13c6fdd4dd081073 --- /dev/null +++ b/benchmark/5core/last_out_w_his/Patio_Lawn_and_Garden.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfcd68690282bb09ad2d0497db1f7b22c27befd323a6308936848d2f15677ce7 +size 331360696 diff --git a/benchmark/5core/last_out_w_his/Patio_Lawn_and_Garden.valid.csv b/benchmark/5core/last_out_w_his/Patio_Lawn_and_Garden.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..2bf61e2c4157626bc2077e8b8d73d004e307e526 --- /dev/null +++ b/benchmark/5core/last_out_w_his/Patio_Lawn_and_Garden.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0757271b98529210a1d131e4cf6affe51550d8ba1aa0793f59a997c65f6b945 +size 52852482 diff --git a/benchmark/5core/last_out_w_his/Pet_Supplies.test.csv b/benchmark/5core/last_out_w_his/Pet_Supplies.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..fa8ed8bca2d317dd05bc136f836354f275bbd7c0 --- /dev/null +++ b/benchmark/5core/last_out_w_his/Pet_Supplies.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:366a32bf7599f37f4f5fd305620f63965260647611c133f2bbaa49623e31acc2 +size 86006226 diff --git a/benchmark/5core/last_out_w_his/Pet_Supplies.train.csv b/benchmark/5core/last_out_w_his/Pet_Supplies.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..b95db68a4735674caba1ec6f13278cd939ba7f2c --- /dev/null +++ b/benchmark/5core/last_out_w_his/Pet_Supplies.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97fe17df5a4a61e5592ff1a1c2476cd4bbcdfdce6e45c07884abcdd2b03fbafb +size 565030364 diff --git a/benchmark/5core/last_out_w_his/Pet_Supplies.valid.csv b/benchmark/5core/last_out_w_his/Pet_Supplies.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..297e1902ecd3dc7ee2c9b0991ef62c0f4f58db61 --- /dev/null +++ b/benchmark/5core/last_out_w_his/Pet_Supplies.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7400de92ca95a48fb020a3612970e4d0d518855f75f47f188bc0a270e30e148e +size 79463426 diff --git a/benchmark/5core/last_out_w_his/Software.test.csv b/benchmark/5core/last_out_w_his/Software.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..bdcb12d30a8d9dd9cf786f1f8eaf57e18b07f491 --- /dev/null +++ b/benchmark/5core/last_out_w_his/Software.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f867575fadb20233fac348a5b08062644b5da046f8198bf1c359a7a57796e89 +size 20925927 diff --git a/benchmark/5core/last_out_w_his/Software.train.csv b/benchmark/5core/last_out_w_his/Software.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..042c8d8e231d5be13932b066d240b3737de425b4 --- /dev/null +++ b/benchmark/5core/last_out_w_his/Software.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82e9804b8596000b997fb1355bbb77a074e14c40b884cac59de4020c7f5a6e17 +size 129667464 diff --git a/benchmark/5core/last_out_w_his/Software.valid.csv b/benchmark/5core/last_out_w_his/Software.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..4338edb1ceaad4e9c3a63af279863b0b34a06e25 --- /dev/null +++ b/benchmark/5core/last_out_w_his/Software.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7acf09accf1f0fcd46028be32f98e60cf29fc1bf93ec4e33c97264c3e21509ac +size 19315571 diff --git a/benchmark/5core/last_out_w_his/Sports_and_Outdoors.test.csv b/benchmark/5core/last_out_w_his/Sports_and_Outdoors.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..e86ea2d86a2a868704965b5b99a6deab1cc139e0 --- /dev/null +++ b/benchmark/5core/last_out_w_his/Sports_and_Outdoors.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca9e3f5bd244db5976917615e5d94b4145a6165bb3708c019bec5e212ac31a85 +size 57451677 diff --git a/benchmark/5core/last_out_w_his/Sports_and_Outdoors.train.csv b/benchmark/5core/last_out_w_his/Sports_and_Outdoors.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..b14a65993c78615534cd5b65f6b10cffe240743e --- /dev/null +++ b/benchmark/5core/last_out_w_his/Sports_and_Outdoors.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c791b6bc81900f758016ca8cea67e8053c057bea7cb8dde40f03e54a5f580b4d +size 348654955 diff --git a/benchmark/5core/last_out_w_his/Sports_and_Outdoors.valid.csv b/benchmark/5core/last_out_w_his/Sports_and_Outdoors.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..90a50c10d8df727a85392e24f27f40dd77130114 --- /dev/null +++ b/benchmark/5core/last_out_w_his/Sports_and_Outdoors.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b803b11df2a13f1fea14b701af9ec66074a8d1388c50a787ce52981fd836f070 +size 52944185 diff --git a/benchmark/5core/last_out_w_his/Tools_and_Home_Improvement.test.csv b/benchmark/5core/last_out_w_his/Tools_and_Home_Improvement.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..3126f6c87155a0766f9c3b4befcac5d9304e5b94 --- /dev/null +++ b/benchmark/5core/last_out_w_his/Tools_and_Home_Improvement.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3475bb89d927beac7a706e3a78b10d24ce12420c3e8383a824451dc33e414b6d +size 126377775 diff --git a/benchmark/5core/last_out_w_his/Tools_and_Home_Improvement.train.csv b/benchmark/5core/last_out_w_his/Tools_and_Home_Improvement.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..1dad1bf92bac31d954b7fcf6a30c9557f606e994 --- /dev/null +++ b/benchmark/5core/last_out_w_his/Tools_and_Home_Improvement.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f810db75330517280b9cd1c3c157ce9ae598e1d0a0c2ad78780779f356decc7e +size 980465161 diff --git a/benchmark/5core/last_out_w_his/Tools_and_Home_Improvement.valid.csv b/benchmark/5core/last_out_w_his/Tools_and_Home_Improvement.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..1d7dcc14f5a531fcfd201488ae8bb1a3cda65d3c --- /dev/null +++ b/benchmark/5core/last_out_w_his/Tools_and_Home_Improvement.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d5f960a1da36c1b4a627e731fdd3a27edde6f60bcf07c1f77cafcb0d57b1ddc +size 117115219 diff --git a/benchmark/5core/last_out_w_his/Toys_and_Games.test.csv b/benchmark/5core/last_out_w_his/Toys_and_Games.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..7f1a51ecc89988f8ade5ef3ef378e7b9c6f68cda --- /dev/null +++ b/benchmark/5core/last_out_w_his/Toys_and_Games.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:849be1c7deca44996a97716eb4c6f3f8768f876672013ece865264345edac660 +size 62797325 diff --git a/benchmark/5core/last_out_w_his/Toys_and_Games.train.csv b/benchmark/5core/last_out_w_his/Toys_and_Games.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..6954bc390d88a418b68ef598f227e6738b313826 --- /dev/null +++ b/benchmark/5core/last_out_w_his/Toys_and_Games.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:211a7382651f65551bdee1bd513907cacd66db3a7dc63963762ff4c2b8a0bc3a +size 522058252 diff --git a/benchmark/5core/last_out_w_his/Toys_and_Games.valid.csv b/benchmark/5core/last_out_w_his/Toys_and_Games.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..4580deabc35b3b022890aed8995601b3acd07a8b --- /dev/null +++ b/benchmark/5core/last_out_w_his/Toys_and_Games.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ddab17988de979dc12e35b77540b58b8e12bbca41b9308bfb51114273ca37bf +size 58042421 diff --git a/benchmark/5core/last_out_w_his/Unknown.test.csv b/benchmark/5core/last_out_w_his/Unknown.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..5efe82f74a394375fed49081a5bab53cb1111b52 --- /dev/null +++ b/benchmark/5core/last_out_w_his/Unknown.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:643b0a5f96a8baabe75abebaf59960eb7d76149eca5af1ec73e9056a7e5059d5 +size 235672995 diff --git a/benchmark/5core/last_out_w_his/Unknown.train.csv b/benchmark/5core/last_out_w_his/Unknown.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..a9776a0b8525208f83fc2a31ddb6b6f7d217d215 --- /dev/null +++ b/benchmark/5core/last_out_w_his/Unknown.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03a0f707b7fa69a51c2c9e3cf6bf9b7f0fb6435018ce833be3f810f122eb9d11 +size 1982571820 diff --git a/benchmark/5core/last_out_w_his/Unknown.valid.csv b/benchmark/5core/last_out_w_his/Unknown.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..0995199aa19f44c56a684228403eaa2b1ed0a77b --- /dev/null +++ b/benchmark/5core/last_out_w_his/Unknown.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:50c2ca04401d809890eaeff8b4aa2a62424a819305860fc32899bbe6594112f6 +size 218077334 diff --git a/benchmark/5core/last_out_w_his/Video_Games.test.csv b/benchmark/5core/last_out_w_his/Video_Games.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..4d5083dc0a74af9e6873e89023a90414bf56fbcb --- /dev/null +++ b/benchmark/5core/last_out_w_his/Video_Games.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac93f03c981a995f046c46afe7f084fa971df5435d9e3483237e2eb457769dd4 +size 13414258 diff --git a/benchmark/5core/last_out_w_his/Video_Games.train.csv b/benchmark/5core/last_out_w_his/Video_Games.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..b148b2f882ec67e8e815c31ff5d0b7d47a85e52a --- /dev/null +++ b/benchmark/5core/last_out_w_his/Video_Games.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae16f1e0a209aa1d240dfd4be0418c83721b12d274329ba4c59a110dfc08c706 +size 88097599 diff --git a/benchmark/5core/last_out_w_his/Video_Games.valid.csv b/benchmark/5core/last_out_w_his/Video_Games.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..c6c7a04001006d94984ce502781594a6cad37b29 --- /dev/null +++ b/benchmark/5core/last_out_w_his/Video_Games.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b6a5fe7ded65a1e382aa24a3cb346dae092e4f1d58c57cd771778cc1d273206 +size 12371818 diff --git a/benchmark/5core/rating_only/All_Beauty.csv b/benchmark/5core/rating_only/All_Beauty.csv new file mode 100644 index 0000000000000000000000000000000000000000..0e4dd513c3c491b2adb4577fe66fe2e7d8b1c9e7 --- /dev/null +++ b/benchmark/5core/rating_only/All_Beauty.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:502c64beaf441afa39f2897b0e7af3f5f361d9e77021011e365a154f0e5afb3a +size 147479 diff --git a/benchmark/5core/rating_only/Arts_Crafts_and_Sewing.csv b/benchmark/5core/rating_only/Arts_Crafts_and_Sewing.csv new file mode 100644 index 0000000000000000000000000000000000000000..f6c9a82e64acb85ecdf337260af774cdd045e88f --- /dev/null +++ b/benchmark/5core/rating_only/Arts_Crafts_and_Sewing.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5d9e8164426dd09c4fbdc0a59e54d0040a0f3ab6a75186e4a2f47ed5744bbee +size 103618675 diff --git a/benchmark/5core/rating_only/Automotive.csv b/benchmark/5core/rating_only/Automotive.csv new file mode 100644 index 0000000000000000000000000000000000000000..35239336fd3251b4d02103dd709113b5f568f9e6 --- /dev/null +++ b/benchmark/5core/rating_only/Automotive.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6298cee0157f7c2a0b96d3e3d9895968be49a118eeeac0a4312f3dc070631a06 +size 352192627 diff --git a/benchmark/5core/rating_only/Baby_Products.csv b/benchmark/5core/rating_only/Baby_Products.csv new file mode 100644 index 0000000000000000000000000000000000000000..e1de212cc8e2ab9190d341f8c13f46081521cf8d --- /dev/null +++ b/benchmark/5core/rating_only/Baby_Products.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a72d6c6b1add4f44203074119555aa0bc3e0bde6e0a4d97776da0baa74bee100 +size 71990429 diff --git a/benchmark/5core/rating_only/Beauty_and_Personal_Care.csv b/benchmark/5core/rating_only/Beauty_and_Personal_Care.csv new file mode 100644 index 0000000000000000000000000000000000000000..d359bbd68bb9b4da8b2945966cab6c0a03c6d981 --- /dev/null +++ b/benchmark/5core/rating_only/Beauty_and_Personal_Care.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14a2bacd6b4e18521ba45705d0a0e672ea82d2878fff2c8897ec8056c24cd6c1 +size 384249280 diff --git a/benchmark/5core/rating_only/Books.csv b/benchmark/5core/rating_only/Books.csv new file mode 100644 index 0000000000000000000000000000000000000000..56e9d334c897f5a2f5d863442185f819dc822726 --- /dev/null +++ b/benchmark/5core/rating_only/Books.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e65a282b42894099a105f3a30dae09354e6cf423b8b81f0014b21a1fd8d3add +size 550245256 diff --git a/benchmark/5core/rating_only/CDs_and_Vinyl.csv b/benchmark/5core/rating_only/CDs_and_Vinyl.csv new file mode 100644 index 0000000000000000000000000000000000000000..cb1306f0fa1c8028ef695f42a90f7ed8bf531fd5 --- /dev/null +++ b/benchmark/5core/rating_only/CDs_and_Vinyl.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:897a633e7cf3e77f87c311447d3cfc7d761e7e900427ef23dd6eceda6a0c9f52 +size 89980186 diff --git a/benchmark/5core/rating_only/Cell_Phones_and_Accessories.csv b/benchmark/5core/rating_only/Cell_Phones_and_Accessories.csv new file mode 100644 index 0000000000000000000000000000000000000000..f9158f04fecdaf46e91d9e2ec18ea781d58a3aad --- /dev/null +++ b/benchmark/5core/rating_only/Cell_Phones_and_Accessories.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fb7ca7f0931aca31eb00c234d254f7e207dee18c335c9aedce4ff1c23ac96d1 +size 159665421 diff --git a/benchmark/5core/rating_only/Clothing_Shoes_and_Jewelry.csv b/benchmark/5core/rating_only/Clothing_Shoes_and_Jewelry.csv new file mode 100644 index 0000000000000000000000000000000000000000..0bfa6e091812d9654333112bde342b5ba2dda50d --- /dev/null +++ b/benchmark/5core/rating_only/Clothing_Shoes_and_Jewelry.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd1ea1d6cbdf4c061067648fb978fd4412eded0d59b48232e5db7b1057da7a12 +size 1339976042 diff --git a/benchmark/5core/rating_only/Electronics.csv b/benchmark/5core/rating_only/Electronics.csv new file mode 100644 index 0000000000000000000000000000000000000000..3e018c2ccd615cc4b978fe937e6dcc5afb541600 --- /dev/null +++ b/benchmark/5core/rating_only/Electronics.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70bc096a7c908c90b1da5b8ab9d880f0ed9590fb1b523d10374b977cd1996257 +size 897479537 diff --git a/benchmark/5core/rating_only/Gift_Cards.csv b/benchmark/5core/rating_only/Gift_Cards.csv new file mode 100644 index 0000000000000000000000000000000000000000..9f0feea3cda2a8b3eae87ff0242aefd20985e2b6 --- /dev/null +++ b/benchmark/5core/rating_only/Gift_Cards.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7058a1488f6120bdeacc7be8fd4e8588f390db5dc2d6532567f30d1c0601c11b +size 140919 diff --git a/benchmark/5core/rating_only/Grocery_and_Gourmet_Food.csv b/benchmark/5core/rating_only/Grocery_and_Gourmet_Food.csv new file mode 100644 index 0000000000000000000000000000000000000000..75ede3ab10f96dd9b11f4623482118eb73be123a --- /dev/null +++ b/benchmark/5core/rating_only/Grocery_and_Gourmet_Food.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:193ad9f17377666565dae8f5500e1355ca5182534557798e0bf024aa2b991595 +size 229036007 diff --git a/benchmark/5core/rating_only/Health_and_Household.csv b/benchmark/5core/rating_only/Health_and_Household.csv new file mode 100644 index 0000000000000000000000000000000000000000..1bdf05fb24a46c5cc2de69231b2c689974dfb8f7 --- /dev/null +++ b/benchmark/5core/rating_only/Health_and_Household.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc14c886da0fd2e5554eedb12246c90a0fe9f9c1db0c5199c66a4c9c990e4763 +size 416263015 diff --git a/benchmark/5core/rating_only/Home_and_Kitchen.csv b/benchmark/5core/rating_only/Home_and_Kitchen.csv new file mode 100644 index 0000000000000000000000000000000000000000..c9e59dd94266deba03fa9a9399b888806700083f --- /dev/null +++ b/benchmark/5core/rating_only/Home_and_Kitchen.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:455f85aac9d8e3eb2892fca2fe370696b89ffba5f118e4d83bb21a3e0e0f448d +size 1635789396 diff --git a/benchmark/5core/rating_only/Industrial_and_Scientific.csv b/benchmark/5core/rating_only/Industrial_and_Scientific.csv new file mode 100644 index 0000000000000000000000000000000000000000..9c3dcc923a6395169c2f11304bdf0cf3715a9366 --- /dev/null +++ b/benchmark/5core/rating_only/Industrial_and_Scientific.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0cb90d6c99f5c13a298565f02743588d590e2cfa4568dfb0bd88fec1a523bb6 +size 23953588 diff --git a/benchmark/5core/rating_only/Kindle_Store.csv b/benchmark/5core/rating_only/Kindle_Store.csv new file mode 100644 index 0000000000000000000000000000000000000000..5d73cf24db8539816ca976e19cbf8c28c78b73fa --- /dev/null +++ b/benchmark/5core/rating_only/Kindle_Store.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a0c72c4025afba10e266d8771d52e0eb703ee9bad367f8a9e581a40c001699e +size 932197614 diff --git a/benchmark/5core/rating_only/Magazine_Subscriptions.csv b/benchmark/5core/rating_only/Magazine_Subscriptions.csv new file mode 100644 index 0000000000000000000000000000000000000000..3e59b5bb2c66f3b81a48bb8187e5712a639352e4 --- /dev/null +++ b/benchmark/5core/rating_only/Magazine_Subscriptions.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a39d13e4dff234585e83f0bbcec8bc5cf10e8de14e5754e00e54fcc9c132eb3e +size 10245 diff --git a/benchmark/5core/rating_only/Movies_and_TV.csv b/benchmark/5core/rating_only/Movies_and_TV.csv new file mode 100644 index 0000000000000000000000000000000000000000..b10c6c4920d6516dec9ef8cd205cd5d003dbabf3 --- /dev/null +++ b/benchmark/5core/rating_only/Movies_and_TV.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95e28dfa9855fc883667a6b90fa0cc2b9d7cd18f9d704e36fcb4fc7765100b79 +size 431542901 diff --git a/benchmark/5core/rating_only/Musical_Instruments.csv b/benchmark/5core/rating_only/Musical_Instruments.csv new file mode 100644 index 0000000000000000000000000000000000000000..dbe525a8f908f8463a8160710db92c99058307c4 --- /dev/null +++ b/benchmark/5core/rating_only/Musical_Instruments.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e68320657122371f11839c3be69de0d0543bacebb0b1ede26d645724df19f87e +size 29687789 diff --git a/benchmark/5core/rating_only/Office_Products.csv b/benchmark/5core/rating_only/Office_Products.csv new file mode 100644 index 0000000000000000000000000000000000000000..dbc3646f7b53e178f386dfc48e313e6968c68a18 --- /dev/null +++ b/benchmark/5core/rating_only/Office_Products.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f21c01544176fb6a24821a32859af5c684812cef3e80f7be8d208c6bae51a420 +size 104457590 diff --git a/benchmark/5core/rating_only/Patio_Lawn_and_Garden.csv b/benchmark/5core/rating_only/Patio_Lawn_and_Garden.csv new file mode 100644 index 0000000000000000000000000000000000000000..4472a2fdf503e2a0d428e90a4f78d97ed6895195 --- /dev/null +++ b/benchmark/5core/rating_only/Patio_Lawn_and_Garden.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54e1cdd60de7c54cd561c895322c27c76de1bfd59453f448c0d3524326c4b35c +size 199596516 diff --git a/benchmark/5core/rating_only/Pet_Supplies.csv b/benchmark/5core/rating_only/Pet_Supplies.csv new file mode 100644 index 0000000000000000000000000000000000000000..9cf1f993f959ca98c3f50b44b65849c0d2604247 --- /dev/null +++ b/benchmark/5core/rating_only/Pet_Supplies.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ff9fc22dfb36bc9d3a37a570cbfd91ddbc01f06f3ce97e1012dbac99a48ed63 +size 306090705 diff --git a/benchmark/5core/rating_only/Software.csv b/benchmark/5core/rating_only/Software.csv new file mode 100644 index 0000000000000000000000000000000000000000..35dfbc0e4adc90a6e59728b9ad1cb848eb7c0298 --- /dev/null +++ b/benchmark/5core/rating_only/Software.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6538476c9cb20fc983a829d06be796b1929be4f10171b1d551899caf5b3e0590 +size 74057089 diff --git a/benchmark/5core/rating_only/Sports_and_Outdoors.csv b/benchmark/5core/rating_only/Sports_and_Outdoors.csv new file mode 100644 index 0000000000000000000000000000000000000000..5bb36e11245cbcaf97f0d356adf921e504866980 --- /dev/null +++ b/benchmark/5core/rating_only/Sports_and_Outdoors.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:572b2046ec1c67f9b9d041fae36256e20da6785e0e79fc688d7a81b11667b3e8 +size 201385322 diff --git a/benchmark/5core/rating_only/Tools_and_Home_Improvement.csv b/benchmark/5core/rating_only/Tools_and_Home_Improvement.csv new file mode 100644 index 0000000000000000000000000000000000000000..0d2a56e5d05e15f0eac2e139f068af44af284c7d --- /dev/null +++ b/benchmark/5core/rating_only/Tools_and_Home_Improvement.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f49770e5b6781e88c49a49b925b5420551f7d87b703175856a5590639cebcc47 +size 457694691 diff --git a/benchmark/5core/rating_only/Toys_and_Games.csv b/benchmark/5core/rating_only/Toys_and_Games.csv new file mode 100644 index 0000000000000000000000000000000000000000..a64823c5d69f966f7f6d7f94731ade9ac5427ffe --- /dev/null +++ b/benchmark/5core/rating_only/Toys_and_Games.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64c2e01a0402010477fb5fc35b43508a8df9e2bb208e0e6f763d93477bfb7a07 +size 224003119 diff --git a/benchmark/5core/rating_only/Unknown.csv b/benchmark/5core/rating_only/Unknown.csv new file mode 100644 index 0000000000000000000000000000000000000000..cf9c033b044a3ec1050d6a1c4658ee6bc8e9f7f9 --- /dev/null +++ b/benchmark/5core/rating_only/Unknown.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9cc75e3cd7973c1b94fdb9746018494e47ac553b1c5c989963973eada366f13 +size 846265689 diff --git a/benchmark/5core/rating_only/Video_Games.csv b/benchmark/5core/rating_only/Video_Games.csv new file mode 100644 index 0000000000000000000000000000000000000000..a7689f5ff449fc4aa0664d424fe17c260a01a24c --- /dev/null +++ b/benchmark/5core/rating_only/Video_Games.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fb8fd6fb8b93a1a555e1aa4d46e3327e2bf345e9fb02a3bea184a9bce2ba4fa +size 47244051 diff --git a/benchmark/5core/timestamp/All_Beauty.test.csv b/benchmark/5core/timestamp/All_Beauty.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..ca1bc7287413f0826d4db2532ead399898f70f1d --- /dev/null +++ b/benchmark/5core/timestamp/All_Beauty.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b2ba2d20f88c8839fe26640bdd2b5dfda29f76e3e023f6a43777ef4999953e4 +size 1317 diff --git a/benchmark/5core/timestamp/All_Beauty.train.csv b/benchmark/5core/timestamp/All_Beauty.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..fde2d2b79223279d7dada9bd5744d679f667f24b --- /dev/null +++ b/benchmark/5core/timestamp/All_Beauty.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:485420c7d8bb0747716b3f06c8304e278b2033cce8617879b8ca05fdfb539658 +size 130125 diff --git a/benchmark/5core/timestamp/All_Beauty.valid.csv b/benchmark/5core/timestamp/All_Beauty.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..78476b9dc1647c31d46658983c09222050575c0d --- /dev/null +++ b/benchmark/5core/timestamp/All_Beauty.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:450972e40845ad98b78643e5dba3bba26752a913c8acec005233ba36ea21e2ff +size 16111 diff --git a/benchmark/5core/timestamp/Arts_Crafts_and_Sewing.test.csv b/benchmark/5core/timestamp/Arts_Crafts_and_Sewing.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..29fa234ad316788e2eb8c6453761f2e107e43102 --- /dev/null +++ b/benchmark/5core/timestamp/Arts_Crafts_and_Sewing.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a8fe84440fb3ee3d15c893879c1de0099ca499250c554071307af76f838bdd3 +size 12228091 diff --git a/benchmark/5core/timestamp/Arts_Crafts_and_Sewing.train.csv b/benchmark/5core/timestamp/Arts_Crafts_and_Sewing.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..dcbbf5992905f95180f3e3b7fe3009dba4d447fa --- /dev/null +++ b/benchmark/5core/timestamp/Arts_Crafts_and_Sewing.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b09c7cf346d4867ce656838384c02b2c0b45e036922caf2e89b1974613d6f9a5 +size 80209697 diff --git a/benchmark/5core/timestamp/Arts_Crafts_and_Sewing.valid.csv b/benchmark/5core/timestamp/Arts_Crafts_and_Sewing.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..0a6ba7742a2787de4334a906103f6b47f5afcf24 --- /dev/null +++ b/benchmark/5core/timestamp/Arts_Crafts_and_Sewing.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d955a83a4096d4671b6032914845ee2ac41ad929a71b408b18785617d9fe8c3d +size 11180961 diff --git a/benchmark/5core/timestamp/Automotive.test.csv b/benchmark/5core/timestamp/Automotive.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..2320c6053d68a00b4c997522e520599cceec5e4c --- /dev/null +++ b/benchmark/5core/timestamp/Automotive.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:27767f2154811ea0850806f09c23d45958878a6e177efe93709e54f7927fd1f1 +size 35071149 diff --git a/benchmark/5core/timestamp/Automotive.train.csv b/benchmark/5core/timestamp/Automotive.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..082e6683c808f9e90997a60f67030ec33f75db38 --- /dev/null +++ b/benchmark/5core/timestamp/Automotive.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1914b1b250226a04db795dd347d07de26a45862e0631749377fa8f4b44eef8e7 +size 279464567 diff --git a/benchmark/5core/timestamp/Automotive.valid.csv b/benchmark/5core/timestamp/Automotive.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..cb177235ab4a5ef19ab9c80bf348fa6acd91694c --- /dev/null +++ b/benchmark/5core/timestamp/Automotive.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63764b2606969645b6790cf492a86dae303f77dc43be3471db03c86b06d24c21 +size 37656985 diff --git a/benchmark/5core/timestamp/Baby_Products.test.csv b/benchmark/5core/timestamp/Baby_Products.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..779d5f0e0ce5889229040464999bdba6d2bca81d --- /dev/null +++ b/benchmark/5core/timestamp/Baby_Products.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56ca37aa42f703b01200850b4df5a05458999576e86bce7127bd7da6b6d84517 +size 5769235 diff --git a/benchmark/5core/timestamp/Baby_Products.train.csv b/benchmark/5core/timestamp/Baby_Products.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..191eba21876daa803e801de9f1fbf03575874e3b --- /dev/null +++ b/benchmark/5core/timestamp/Baby_Products.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:484673df2763d6187bcef0f231a414bb862f96c3f90e46066df1b53f3a3e498b +size 61913861 diff --git a/benchmark/5core/timestamp/Baby_Products.valid.csv b/benchmark/5core/timestamp/Baby_Products.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..8cf5bc74e23df5b084c442b1ef3f93fcdf85b6c8 --- /dev/null +++ b/benchmark/5core/timestamp/Baby_Products.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be151f68a2e9edeb9f17c028b676189e29641c4999f1ad8759baa63cc8550d24 +size 4307407 diff --git a/benchmark/5core/timestamp/Beauty_and_Personal_Care.test.csv b/benchmark/5core/timestamp/Beauty_and_Personal_Care.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..b6580ff692b9b7b595fdb88bebfb830f4c9352f2 --- /dev/null +++ b/benchmark/5core/timestamp/Beauty_and_Personal_Care.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:786d0bf4ffe2012f0b14b3d3aba4d357b22b8374309965c7ed63af58c0bffd4f +size 58758545 diff --git a/benchmark/5core/timestamp/Beauty_and_Personal_Care.train.csv b/benchmark/5core/timestamp/Beauty_and_Personal_Care.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..216dd3e8c15275e29b0740305f9f15ba264fad3a --- /dev/null +++ b/benchmark/5core/timestamp/Beauty_and_Personal_Care.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df4b96d0d8216f4762436b235a75e2f55617728c1b60943c788c836561a3be9f +size 280613246 diff --git a/benchmark/5core/timestamp/Beauty_and_Personal_Care.valid.csv b/benchmark/5core/timestamp/Beauty_and_Personal_Care.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..0d72d7db39b1b9ae7b5de2763bffdc3adfdcfff0 --- /dev/null +++ b/benchmark/5core/timestamp/Beauty_and_Personal_Care.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc581f8ff9a45b165a47e1337ffbf86cda5e7364b7ec3cd1c12cf371ff06898d +size 44877563 diff --git a/benchmark/5core/timestamp/Books.test.csv b/benchmark/5core/timestamp/Books.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..f8ff0d42307b059d7c3d44e986c8661f896e18a3 --- /dev/null +++ b/benchmark/5core/timestamp/Books.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7ad70228f85a82775d2b336ac471c5af357f5d1de7210f980dbad4541c2d11c +size 19038795 diff --git a/benchmark/5core/timestamp/Books.train.csv b/benchmark/5core/timestamp/Books.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..cf9f4687b9c242b24c879fbd119980b567ca23ea --- /dev/null +++ b/benchmark/5core/timestamp/Books.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ad10b3782bc809eabc123b3c9a362dcec258f745051bfda358fcd2079518d49 +size 506484776 diff --git a/benchmark/5core/timestamp/Books.valid.csv b/benchmark/5core/timestamp/Books.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..b26af249ad90c0e0bf9b8d80e9e9dd256fa9a5f6 --- /dev/null +++ b/benchmark/5core/timestamp/Books.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:38a7c1fb77c93cb8f5a7f3f613b140b5fcfe58727a884f14e1f15a31204c1b6d +size 24721759 diff --git a/benchmark/5core/timestamp/CDs_and_Vinyl.test.csv b/benchmark/5core/timestamp/CDs_and_Vinyl.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..1e0733c59429b395bfea2a74270f0426e0102071 --- /dev/null +++ b/benchmark/5core/timestamp/CDs_and_Vinyl.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b946b93b305486f487a7aa9a0fdabaec532a107cf6fdeb4ef0e52ca7a63fabf +size 1230565 diff --git a/benchmark/5core/timestamp/CDs_and_Vinyl.train.csv b/benchmark/5core/timestamp/CDs_and_Vinyl.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..c1761e6edc6b1cf14c8a519c497b32f7d1fd326a --- /dev/null +++ b/benchmark/5core/timestamp/CDs_and_Vinyl.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d4c974a44facd45cc45517593d3c912176d382619e6832523d06a1fd8b7e998 +size 86943242 diff --git a/benchmark/5core/timestamp/CDs_and_Vinyl.valid.csv b/benchmark/5core/timestamp/CDs_and_Vinyl.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..88a1dabcb1d371c9a03ad8e1056f591bb79441d2 --- /dev/null +++ b/benchmark/5core/timestamp/CDs_and_Vinyl.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4ef93dc56cdb92332095e2a721f704647a3dfddfa825d6983fc8a5a1ef8e66d +size 1806453 diff --git a/benchmark/5core/timestamp/Cell_Phones_and_Accessories.test.csv b/benchmark/5core/timestamp/Cell_Phones_and_Accessories.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..d8325bafc0a1a2d8c2f5c553d88672ebeef99d2d --- /dev/null +++ b/benchmark/5core/timestamp/Cell_Phones_and_Accessories.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc5fda369cd53d6cc907a1a76dd09cf162f3f8e92c18d874f6e62a23600b457f +size 17659855 diff --git a/benchmark/5core/timestamp/Cell_Phones_and_Accessories.train.csv b/benchmark/5core/timestamp/Cell_Phones_and_Accessories.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..debab516acf4fe3f9835cad3630f176cd6affdd6 --- /dev/null +++ b/benchmark/5core/timestamp/Cell_Phones_and_Accessories.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ff1b7e223a24223e3ea01943ae5b7337415be75dac6784822a196e2410f8168 +size 128117757 diff --git a/benchmark/5core/timestamp/Cell_Phones_and_Accessories.valid.csv b/benchmark/5core/timestamp/Cell_Phones_and_Accessories.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..32d47824bca32234e2a5ebf26b5a7b89331a2e17 --- /dev/null +++ b/benchmark/5core/timestamp/Cell_Phones_and_Accessories.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec2ef0894e9b0b64bed8b028a9a726289bec627a8e534e4fff903420031b9b09 +size 13887883 diff --git a/benchmark/5core/timestamp/Clothing_Shoes_and_Jewelry.test.csv b/benchmark/5core/timestamp/Clothing_Shoes_and_Jewelry.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..ed71fa5e6b7a7cd18fd6555f21595ebb7da09937 --- /dev/null +++ b/benchmark/5core/timestamp/Clothing_Shoes_and_Jewelry.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6499166c0eaf0e0ded714871353ebc65d1f978481afde5a37dd484636b72956 +size 188893161 diff --git a/benchmark/5core/timestamp/Clothing_Shoes_and_Jewelry.train.csv b/benchmark/5core/timestamp/Clothing_Shoes_and_Jewelry.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..478e355bb8f628d5e5aee18c2c6cfbed04d6ca52 --- /dev/null +++ b/benchmark/5core/timestamp/Clothing_Shoes_and_Jewelry.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0792ce11a8ab103b5d59d74be85701376514cf1a98afb52549c2ac865d871b8d +size 974463108 diff --git a/benchmark/5core/timestamp/Clothing_Shoes_and_Jewelry.valid.csv b/benchmark/5core/timestamp/Clothing_Shoes_and_Jewelry.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..2990c3c472877d797b0034fa590ab8894edfe7e5 --- /dev/null +++ b/benchmark/5core/timestamp/Clothing_Shoes_and_Jewelry.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5f49ed03997a510b318f10ae556227660c0fa3c6d2dbe05ec6c8085d2484a5f +size 176619847 diff --git a/benchmark/5core/timestamp/Electronics.test.csv b/benchmark/5core/timestamp/Electronics.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..8ee4ccdfcf3eb081c011ab97d57765106dc233da --- /dev/null +++ b/benchmark/5core/timestamp/Electronics.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac5166ced7edbba547c9e64206f390583381c5f370a53748ca72da8fa9fcd377 +size 70498957 diff --git a/benchmark/5core/timestamp/Electronics.train.csv b/benchmark/5core/timestamp/Electronics.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..fc69849f0fabd3e878af27a35b4900e06da67885 --- /dev/null +++ b/benchmark/5core/timestamp/Electronics.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2f45a4031c8dbf564f12cb492665c22db7e91059340af2ccf531983516cf9a8 +size 759602697 diff --git a/benchmark/5core/timestamp/Electronics.valid.csv b/benchmark/5core/timestamp/Electronics.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..b5a8cdb1d825ac24ca5a440f057776826b85c3f1 --- /dev/null +++ b/benchmark/5core/timestamp/Electronics.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d75a1a9790a360ec6d51c44acab1aba05533d86130fda060be3904a1f161d56 +size 67377957 diff --git a/benchmark/5core/timestamp/Gift_Cards.test.csv b/benchmark/5core/timestamp/Gift_Cards.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..834e29b0f08690790979fe0105acd79297a2b5d2 --- /dev/null +++ b/benchmark/5core/timestamp/Gift_Cards.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:588973af9d207c617ccff6a8f6c928ab97af888f7bb77e2d1594451a98ba415e +size 6243 diff --git a/benchmark/5core/timestamp/Gift_Cards.train.csv b/benchmark/5core/timestamp/Gift_Cards.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..603993b42ba1d797797204818d863ef47d5e3098 --- /dev/null +++ b/benchmark/5core/timestamp/Gift_Cards.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10c4f275c65ebeae9ce2215451fb6b23e30f21a2e47e398ef45872a7ebff8bbe +size 125723 diff --git a/benchmark/5core/timestamp/Gift_Cards.valid.csv b/benchmark/5core/timestamp/Gift_Cards.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..83f80354b812faca5c4b17338075f4ff4e088bbe --- /dev/null +++ b/benchmark/5core/timestamp/Gift_Cards.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d126b3d029f5f7a276074ccda461780cc7b59d5f8fe7bcd9d7ea766a35574401 +size 9027 diff --git a/benchmark/5core/timestamp/Grocery_and_Gourmet_Food.test.csv b/benchmark/5core/timestamp/Grocery_and_Gourmet_Food.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..548674a0d7921ba87f676c3b6b80a156b41f66a3 --- /dev/null +++ b/benchmark/5core/timestamp/Grocery_and_Gourmet_Food.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c200e13c924968a3aa2a39fbcb52883819411a3a11ec7335f1c2880c0c4076e1 +size 25385473 diff --git a/benchmark/5core/timestamp/Grocery_and_Gourmet_Food.train.csv b/benchmark/5core/timestamp/Grocery_and_Gourmet_Food.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..1cf2267f287a31e7f0d4cd12c240aa0da6fec690 --- /dev/null +++ b/benchmark/5core/timestamp/Grocery_and_Gourmet_Food.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98eb52cae17fffaed3eca59180879840d4ea13e2f18a3816b88c3ae4bf91240f +size 173690341 diff --git a/benchmark/5core/timestamp/Grocery_and_Gourmet_Food.valid.csv b/benchmark/5core/timestamp/Grocery_and_Gourmet_Food.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..38afbcfbb63d41d8009f5cdca55a0cdb0c9b3c15 --- /dev/null +++ b/benchmark/5core/timestamp/Grocery_and_Gourmet_Food.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2dba4e85ee4afeac9e5843dfc2dfbbf6f677f81b3df528e7818fa07b1428fc64 +size 29960267 diff --git a/benchmark/5core/timestamp/Health_and_Household.test.csv b/benchmark/5core/timestamp/Health_and_Household.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..a3f19a308f268d79e01397cddcfcd633fb75f27c --- /dev/null +++ b/benchmark/5core/timestamp/Health_and_Household.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d3247a1c78cede9e6fa701d6c81eecc649aa522f783a6a4c586d447bfc6b9a6e +size 53114305 diff --git a/benchmark/5core/timestamp/Health_and_Household.train.csv b/benchmark/5core/timestamp/Health_and_Household.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..a729ecf882791a243b1cee9a77694451409df009 --- /dev/null +++ b/benchmark/5core/timestamp/Health_and_Household.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:497c01ec382a1dee41bed6d3811dc92e7fe4e756a5eedbcc02638d9076b39c4d +size 315494213 diff --git a/benchmark/5core/timestamp/Health_and_Household.valid.csv b/benchmark/5core/timestamp/Health_and_Household.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..e2176eeb715a93c2df709e4d794e065818df129b --- /dev/null +++ b/benchmark/5core/timestamp/Health_and_Household.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4cd80b2c9d54d0a9bd976d020dfb812f531a432b99b3e952e1a1b84ee28beb28 +size 47654571 diff --git a/benchmark/5core/timestamp/Home_and_Kitchen.test.csv b/benchmark/5core/timestamp/Home_and_Kitchen.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..6eb7ae82cdac4fbf8e0465a7af1d509dd30fa70a --- /dev/null +++ b/benchmark/5core/timestamp/Home_and_Kitchen.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:18aeb151f02b3c104f6d47f6f0b9b2c2332aff8e6b494f499f6d6d2285fc78ba +size 206041789 diff --git a/benchmark/5core/timestamp/Home_and_Kitchen.train.csv b/benchmark/5core/timestamp/Home_and_Kitchen.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..3a6ead0a7dc93a6f7e8ffb2ce49232c1326ec7c0 --- /dev/null +++ b/benchmark/5core/timestamp/Home_and_Kitchen.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47983e3dbaf717f66aa7b21265ee7032467e6b75684c5361568a2c64f9e2ee3e +size 1240591228 diff --git a/benchmark/5core/timestamp/Home_and_Kitchen.valid.csv b/benchmark/5core/timestamp/Home_and_Kitchen.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..7a06680951b0dfe67932ccb15c26e4bcdc0f75ef --- /dev/null +++ b/benchmark/5core/timestamp/Home_and_Kitchen.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7da8d7119d362feda5e66c6c5f10939be51bc47cb8cefec5124a6a93526e3089 +size 189156453 diff --git a/benchmark/5core/timestamp/Industrial_and_Scientific.test.csv b/benchmark/5core/timestamp/Industrial_and_Scientific.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..5e38feb2c08ca4ff12274214ffc00d5e84f85772 --- /dev/null +++ b/benchmark/5core/timestamp/Industrial_and_Scientific.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31e65d36128a016d0088da3f7c63c6da1235be0b77a69db99857fdae9b84f3f0 +size 4112467 diff --git a/benchmark/5core/timestamp/Industrial_and_Scientific.train.csv b/benchmark/5core/timestamp/Industrial_and_Scientific.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..e3930c55b3b315862adebf36e15531b0aa031f27 --- /dev/null +++ b/benchmark/5core/timestamp/Industrial_and_Scientific.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1aa2d220043b43818e1d35723257942696ef4f70e1bca237048ded0298622548 +size 17281344 diff --git a/benchmark/5core/timestamp/Industrial_and_Scientific.valid.csv b/benchmark/5core/timestamp/Industrial_and_Scientific.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..f47b3590ffa78c72118c8e068e3be264ba328948 --- /dev/null +++ b/benchmark/5core/timestamp/Industrial_and_Scientific.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:781eadb683cc3e19b9deb4bf4b1841bfca9ad257416af167987fd11dc1537dff +size 2559851 diff --git a/benchmark/5core/timestamp/Kindle_Store.test.csv b/benchmark/5core/timestamp/Kindle_Store.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..d72c4bfe90a8ff4eede7e2547329a59cdfbca047 --- /dev/null +++ b/benchmark/5core/timestamp/Kindle_Store.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a008d688c545f9c60002ad066867443dc0952009915793e8ff04a9091f3f22e2 +size 60470759 diff --git a/benchmark/5core/timestamp/Kindle_Store.train.csv b/benchmark/5core/timestamp/Kindle_Store.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..4b46aac80255c401efc73c00940d5dd5f765ab88 --- /dev/null +++ b/benchmark/5core/timestamp/Kindle_Store.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83084f411c4290e947bb9263e8ed5a07b0a09df27a757cea21b9c2837ea09297 +size 797970058 diff --git a/benchmark/5core/timestamp/Kindle_Store.valid.csv b/benchmark/5core/timestamp/Kindle_Store.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..4bf6647eab181f0a7740dadf0fe5cc69d1364c03 --- /dev/null +++ b/benchmark/5core/timestamp/Kindle_Store.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6684c7b47002e5fb9af4de08930220637f62eb2cae82954fd6ed98ad65f1027e +size 73756871 diff --git a/benchmark/5core/timestamp/Magazine_Subscriptions.test.csv b/benchmark/5core/timestamp/Magazine_Subscriptions.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..200bf2e4978e6a71607f5dbd6ad4c1b65fe8c27d --- /dev/null +++ b/benchmark/5core/timestamp/Magazine_Subscriptions.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:485615fb2865bf19b1bf8babcbc6faa9d7f8e7fdac4eaa252076aa0d317c1056 +size 95 diff --git a/benchmark/5core/timestamp/Magazine_Subscriptions.train.csv b/benchmark/5core/timestamp/Magazine_Subscriptions.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..f804fc10280d47fd4efa277715fdd3d64bae9cc8 --- /dev/null +++ b/benchmark/5core/timestamp/Magazine_Subscriptions.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a09f157ef761bf4169f0c57b1a47b3b0962a932f384bcf36e96a75d2eebc6b8 +size 9665 diff --git a/benchmark/5core/timestamp/Magazine_Subscriptions.valid.csv b/benchmark/5core/timestamp/Magazine_Subscriptions.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..8e41588d15a76de38622fa272784321b5612ac48 --- /dev/null +++ b/benchmark/5core/timestamp/Magazine_Subscriptions.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a559b4745b4e2006696f869ebf2057a1fb942861efc3bbec000ce105858cb58b +size 559 diff --git a/benchmark/5core/timestamp/Movies_and_TV.test.csv b/benchmark/5core/timestamp/Movies_and_TV.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..3147dab6bb28ea3f59c23fc992c10f986ea83532 --- /dev/null +++ b/benchmark/5core/timestamp/Movies_and_TV.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7243c3c18783e10d74fd27e470a2d1a25c5f4e900eddc20fd74e9fd0227bb3a2 +size 8468037 diff --git a/benchmark/5core/timestamp/Movies_and_TV.train.csv b/benchmark/5core/timestamp/Movies_and_TV.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..e96acb5c0f677ef5d9751804bc253feb2f92521e --- /dev/null +++ b/benchmark/5core/timestamp/Movies_and_TV.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6fa19a98eaaa5a71754008305f54ff26081156d9c380ac951a9bdce695ae7091 +size 411198473 diff --git a/benchmark/5core/timestamp/Movies_and_TV.valid.csv b/benchmark/5core/timestamp/Movies_and_TV.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..4c2e7e454ba5fbfc839475532c63372e1175a087 --- /dev/null +++ b/benchmark/5core/timestamp/Movies_and_TV.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a1a1fa60c0eec77200bc3d33f7bbf07f2f9c763dc1a0927fe92977f4ec10f23 +size 11876465 diff --git a/benchmark/5core/timestamp/Musical_Instruments.test.csv b/benchmark/5core/timestamp/Musical_Instruments.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..8da4385ee6458ce158776a0b3cead2d96ed1cb3c --- /dev/null +++ b/benchmark/5core/timestamp/Musical_Instruments.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bcf3d335039c12948c323062fdfaee6c5e99b8d78897ac7a3f714ab310fb8396 +size 2470781 diff --git a/benchmark/5core/timestamp/Musical_Instruments.train.csv b/benchmark/5core/timestamp/Musical_Instruments.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..e48ac7a844043365edd5d5e4dd3905c2f4f2d4aa --- /dev/null +++ b/benchmark/5core/timestamp/Musical_Instruments.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13526728bd9c3dfd7d46f361dfa0eda6729c24dbbca6b17b36cb2db53282ae2e +size 24822291 diff --git a/benchmark/5core/timestamp/Musical_Instruments.valid.csv b/benchmark/5core/timestamp/Musical_Instruments.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..08ffb300defca8f78de7ccb372a977fb35e9a9d3 --- /dev/null +++ b/benchmark/5core/timestamp/Musical_Instruments.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c37e493f2e26e5483e41d657f8dcc6ee3fa80ddb27650507e9758352818c61dc +size 2394791 diff --git a/benchmark/5core/timestamp/Office_Products.test.csv b/benchmark/5core/timestamp/Office_Products.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..7618c684442694abfb530cc18db225296c76dbe0 --- /dev/null +++ b/benchmark/5core/timestamp/Office_Products.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fde038ca5ce4c5e5f11f0b86082f7cce142cb92a3201f83a99e22f9d01cbfd0 +size 12689791 diff --git a/benchmark/5core/timestamp/Office_Products.train.csv b/benchmark/5core/timestamp/Office_Products.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..8628c70e9ca6e0b865bed14cd750737da0f35474 --- /dev/null +++ b/benchmark/5core/timestamp/Office_Products.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56a06a94c49badf1aabacd7ae0f230a4a54399e8e3d44dc534ec9a830e1685bd +size 83609016 diff --git a/benchmark/5core/timestamp/Office_Products.valid.csv b/benchmark/5core/timestamp/Office_Products.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..813a28baa66a708c43355514dea6d61f004f5f7e --- /dev/null +++ b/benchmark/5core/timestamp/Office_Products.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2906dbcc37b142cc0d512ce0a120eed71103f33fdfe2186af4a2bd3c74fb2d6 +size 8158857 diff --git a/benchmark/5core/timestamp/Patio_Lawn_and_Garden.test.csv b/benchmark/5core/timestamp/Patio_Lawn_and_Garden.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..93cae204ed14ffdc6e2d8c2f3ff0406e97dbef28 --- /dev/null +++ b/benchmark/5core/timestamp/Patio_Lawn_and_Garden.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d0fc73199b6f1c55ffdf00dce71a2d5276aaa3f799c2c177e41dee9b9efcb99b +size 26788469 diff --git a/benchmark/5core/timestamp/Patio_Lawn_and_Garden.train.csv b/benchmark/5core/timestamp/Patio_Lawn_and_Garden.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..8a76eb0def87562aa8149293525c2059e91cbd29 --- /dev/null +++ b/benchmark/5core/timestamp/Patio_Lawn_and_Garden.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:653d9e9d21a5ee33b58407ba3afa6b210c2e62029e71af666b998f66b544f0d9 +size 147749970 diff --git a/benchmark/5core/timestamp/Patio_Lawn_and_Garden.valid.csv b/benchmark/5core/timestamp/Patio_Lawn_and_Garden.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..0c1dde726f9c4abfcca3a44b1c664297f9383922 --- /dev/null +++ b/benchmark/5core/timestamp/Patio_Lawn_and_Garden.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60e47a2da4730be791fab9c1cc6951c3f2ec7fe902fb67fdbd5daedeb31dcadd +size 25058151 diff --git a/benchmark/5core/timestamp/Pet_Supplies.test.csv b/benchmark/5core/timestamp/Pet_Supplies.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..9dc78ce5cef744233081fd3e650b222e5d96535a --- /dev/null +++ b/benchmark/5core/timestamp/Pet_Supplies.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03e8195b32ff37b16d5f0288c317fc33b162f35c3729e6e517b47ce3c10202a1 +size 34112869 diff --git a/benchmark/5core/timestamp/Pet_Supplies.train.csv b/benchmark/5core/timestamp/Pet_Supplies.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..2cb41b558b017abf372f1aba5cf4373b030a5f20 --- /dev/null +++ b/benchmark/5core/timestamp/Pet_Supplies.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:847d4b71f127eb0b388fddf8d1f92c133afc700c01fd0ac10a73d28db29836d6 +size 239980785 diff --git a/benchmark/5core/timestamp/Pet_Supplies.valid.csv b/benchmark/5core/timestamp/Pet_Supplies.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..4126e1c270df1ea322f64fca9720cc8592096b0d --- /dev/null +++ b/benchmark/5core/timestamp/Pet_Supplies.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8d9b2994642cc937bc8f0756fffd0be9fb64b455d59670c3acd0e0b8c39dc77 +size 31997125 diff --git a/benchmark/5core/timestamp/Software.test.csv b/benchmark/5core/timestamp/Software.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..b66c66968b31bc732007d41c8f35a8f865bd1c3a --- /dev/null +++ b/benchmark/5core/timestamp/Software.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6288e35b20880ceda81d1c6d2a26aaf21f50d42fce680f10a334de898835b6ab +size 1125877 diff --git a/benchmark/5core/timestamp/Software.train.csv b/benchmark/5core/timestamp/Software.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..88fb394ed2da0f57ee79600cf248c06d435379dd --- /dev/null +++ b/benchmark/5core/timestamp/Software.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34d7e4899458cda6467bca12014f621e940a8c9b08157456c5c0d1d94ae5e0de +size 70877991 diff --git a/benchmark/5core/timestamp/Software.valid.csv b/benchmark/5core/timestamp/Software.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..c3338cb2cf04d6449f5d3295162e7f5328ec80ee --- /dev/null +++ b/benchmark/5core/timestamp/Software.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f20a363cacdf89fbdb590ba16a13d2b9a85c8598fa06e9b6bf69933c338d4735 +size 2053295 diff --git a/benchmark/5core/timestamp/Sports_and_Outdoors.test.csv b/benchmark/5core/timestamp/Sports_and_Outdoors.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..f65530ed3c0e3bbaba39ba5dbfc817fb22b32323 --- /dev/null +++ b/benchmark/5core/timestamp/Sports_and_Outdoors.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93e79a39b4efe0e6ee0908e8fa378763286645f34f9cc1e1dc234b3158cbed67 +size 19953925 diff --git a/benchmark/5core/timestamp/Sports_and_Outdoors.train.csv b/benchmark/5core/timestamp/Sports_and_Outdoors.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..177a965578b9f1044e0b42055257c3ec0f068156 --- /dev/null +++ b/benchmark/5core/timestamp/Sports_and_Outdoors.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa8320ccd75e3a876e498f6fad604850af52783ea599485e0c5c52d2734a6129 +size 166334998 diff --git a/benchmark/5core/timestamp/Sports_and_Outdoors.valid.csv b/benchmark/5core/timestamp/Sports_and_Outdoors.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..fbfb20250313d5771f658432be649da92708a639 --- /dev/null +++ b/benchmark/5core/timestamp/Sports_and_Outdoors.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eded925f95d476cc086308a3ae6bbf70772399cbc2027c9409abd7bdf776e38d +size 15096473 diff --git a/benchmark/5core/timestamp/Tools_and_Home_Improvement.test.csv b/benchmark/5core/timestamp/Tools_and_Home_Improvement.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..ad4828cf3262ec1596442472bc786b86dfd7dfd0 --- /dev/null +++ b/benchmark/5core/timestamp/Tools_and_Home_Improvement.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d1b0c76482176600fcbba2bd0f0ada4b4721dbac038cc97282c2b937ef457a3 +size 59241973 diff --git a/benchmark/5core/timestamp/Tools_and_Home_Improvement.train.csv b/benchmark/5core/timestamp/Tools_and_Home_Improvement.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..24da6ed30d39707cf35a3948e69b50d78a4ebe14 --- /dev/null +++ b/benchmark/5core/timestamp/Tools_and_Home_Improvement.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e7b4c295ed75ed6a5427da555bb1ea34bf3acf6501fbbcdc41c568c6ea176c8 +size 350086013 diff --git a/benchmark/5core/timestamp/Tools_and_Home_Improvement.valid.csv b/benchmark/5core/timestamp/Tools_and_Home_Improvement.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..b5737478fbaac48daa538e5e0f45e07a769bcdb7 --- /dev/null +++ b/benchmark/5core/timestamp/Tools_and_Home_Improvement.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb618b506f0da40fd154118645261c61489c952c8ff7012d85079004c9634da9 +size 48366779 diff --git a/benchmark/5core/timestamp/Toys_and_Games.test.csv b/benchmark/5core/timestamp/Toys_and_Games.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..97436a2d701b9a85ce4538dc4516af80856e4bde --- /dev/null +++ b/benchmark/5core/timestamp/Toys_and_Games.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3698fa8de32d77fe42b2e99cf4e7dae4b5bfe9d28960c793bc8a71126424a59c +size 25521889 diff --git a/benchmark/5core/timestamp/Toys_and_Games.train.csv b/benchmark/5core/timestamp/Toys_and_Games.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..11d388450d57e1947d2a2203a70e9ec6cedb1aa9 --- /dev/null +++ b/benchmark/5core/timestamp/Toys_and_Games.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad45dc7660efe953d20dc168c6befaf34b9b961a96488f484ddaf1e88837c3b2 +size 180676719 diff --git a/benchmark/5core/timestamp/Toys_and_Games.valid.csv b/benchmark/5core/timestamp/Toys_and_Games.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..dcec9da81ee21b23ddcd27eaf55b6ebfbe7e49db --- /dev/null +++ b/benchmark/5core/timestamp/Toys_and_Games.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f0755a9bc2fb3d3d1d217d833658d3a006c2bef57f35d4ab918f7a85786b886 +size 17804585 diff --git a/benchmark/5core/timestamp/Unknown.test.csv b/benchmark/5core/timestamp/Unknown.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..95e866caa1e0f4d148ed6144852302a08210dcb7 --- /dev/null +++ b/benchmark/5core/timestamp/Unknown.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2216af2bb38fe9508a09c8ec8e6b694ed990b32d115d86f9b50674de79953f2 +size 16166903 diff --git a/benchmark/5core/timestamp/Unknown.train.csv b/benchmark/5core/timestamp/Unknown.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..4947fce741955007e318286326c08ab368f78913 --- /dev/null +++ b/benchmark/5core/timestamp/Unknown.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cab516040c32ba4accc6f68a3c54231e8a9daa6974ce66689a929599eb6d987 +size 809374409 diff --git a/benchmark/5core/timestamp/Unknown.valid.csv b/benchmark/5core/timestamp/Unknown.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..43566c7cf197704085f1f324128733fdade56634 --- /dev/null +++ b/benchmark/5core/timestamp/Unknown.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5be4696419fdd6222f28272c629e343a1764a6c6f00f46faf9c353e9fad16136 +size 20724451 diff --git a/benchmark/5core/timestamp/Video_Games.test.csv b/benchmark/5core/timestamp/Video_Games.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..21b5c01e576acfe3549e4eaaf9136bc638d50d5e --- /dev/null +++ b/benchmark/5core/timestamp/Video_Games.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c03d66743c4f808c8b6f7022535eda231557736161b3b864b85ae7fafae92b5a +size 2508611 diff --git a/benchmark/5core/timestamp/Video_Games.train.csv b/benchmark/5core/timestamp/Video_Games.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..058d3f6756ebc375e7e43626e7399d4615f41bdd --- /dev/null +++ b/benchmark/5core/timestamp/Video_Games.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa317e03fb04050ab41f8f73fe06b5840c3da01e6b3bccc375e141404c739d30 +size 42733741 diff --git a/benchmark/5core/timestamp/Video_Games.valid.csv b/benchmark/5core/timestamp/Video_Games.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..c3d6ffb999a9ca2403d49dd2d3938bde497fa94e --- /dev/null +++ b/benchmark/5core/timestamp/Video_Games.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87c7e3a08270611cf3d89aab941fd42d0a3022e118be97cb5ba8a6142c484250 +size 2001773 diff --git a/benchmark/5core/timestamp_w_his/All_Beauty.test.csv b/benchmark/5core/timestamp_w_his/All_Beauty.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..3da410c0cc35df766e02fa01603a93da82717025 --- /dev/null +++ b/benchmark/5core/timestamp_w_his/All_Beauty.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76dc1339e0d3530eb3d06b798844714f30976db00d33c29ef59e438caae8dfed +size 4537 diff --git a/benchmark/5core/timestamp_w_his/All_Beauty.train.csv b/benchmark/5core/timestamp_w_his/All_Beauty.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5344719ddc44f445254d4d29e403b7907f3c4dd1 --- /dev/null +++ b/benchmark/5core/timestamp_w_his/All_Beauty.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8499e9c5446df9793bdbb24bcdf8a1dc7e77f56f5bec6443c0092d8ef3b195f9 +size 291436 diff --git a/benchmark/5core/timestamp_w_his/All_Beauty.valid.csv b/benchmark/5core/timestamp_w_his/All_Beauty.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..125960f9d7359258cef9575e2b8195dfdbd13ee1 --- /dev/null +++ b/benchmark/5core/timestamp_w_his/All_Beauty.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af6f87cd9359336e5de233925c9b1953438d8b65f47116f05a997932fa349c7c +size 54664 diff --git a/benchmark/5core/timestamp_w_his/Arts_Crafts_and_Sewing.test.csv b/benchmark/5core/timestamp_w_his/Arts_Crafts_and_Sewing.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..354878b4738bc807ef555776f398065851b5396b --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Arts_Crafts_and_Sewing.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ac27cf3bd4946f18f55047ebb551e2694f115b91ac525e23ac7b69a2e7c59c3e +size 46406843 diff --git a/benchmark/5core/timestamp_w_his/Arts_Crafts_and_Sewing.train.csv b/benchmark/5core/timestamp_w_his/Arts_Crafts_and_Sewing.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..e2c4dee7265be4b83525416e653672257c640941 --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Arts_Crafts_and_Sewing.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56a6be7a29bc1392a0a81e0a3b9416aa8e878867dc36fde0d459f96ff00b9be7 +size 181634454 diff --git a/benchmark/5core/timestamp_w_his/Arts_Crafts_and_Sewing.valid.csv b/benchmark/5core/timestamp_w_his/Arts_Crafts_and_Sewing.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..c50f56abcb250b268bcd47ca1a315beebe6d1ae1 --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Arts_Crafts_and_Sewing.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e9109caae7df23a3d9ec4170e1c442dcffdf8379168ef0b5be344a2107fbd99 +size 35598591 diff --git a/benchmark/5core/timestamp_w_his/Automotive.test.csv b/benchmark/5core/timestamp_w_his/Automotive.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..3d3b89cd83f66fd5ba38d7f3f11b71fa72162a74 --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Automotive.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f1d0a96dc0b37754661f2b56d74b3b10029542938c7fb0c8a1a5c9c4306a5ed9 +size 113969852 diff --git a/benchmark/5core/timestamp_w_his/Automotive.train.csv b/benchmark/5core/timestamp_w_his/Automotive.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..e6b144b10518cb789fc43ee357d3ec26e4d1ebb2 --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Automotive.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2044148bc7add3dfda8500f94c9d794f74e0eddd7b71bd5ba79c5a9379b0b1b0 +size 641536087 diff --git a/benchmark/5core/timestamp_w_his/Automotive.valid.csv b/benchmark/5core/timestamp_w_his/Automotive.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..ccdced10d4981d1aff407501dafa06115353cc39 --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Automotive.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8f3c5e228087d3c7b44715a0f799b64aee408145fd2bdf714eda8a5ef35a594 +size 112003402 diff --git a/benchmark/5core/timestamp_w_his/Baby_Products.test.csv b/benchmark/5core/timestamp_w_his/Baby_Products.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..aca397cc07550ea008b3345272a1f8606cb6989f --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Baby_Products.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5044171d1c9cc8988cabd5f5a9e6beb0077ad4847a882e6ce85831a643869843 +size 23308066 diff --git a/benchmark/5core/timestamp_w_his/Baby_Products.train.csv b/benchmark/5core/timestamp_w_his/Baby_Products.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..27b22a3e4c81766df3dd10c851d2f017000173ae --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Baby_Products.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4a686752fb4c6a60d155cd459825255483fa3cfde15129767c204c9d5eedb983 +size 126049171 diff --git a/benchmark/5core/timestamp_w_his/Baby_Products.valid.csv b/benchmark/5core/timestamp_w_his/Baby_Products.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..ac9fc86fb89018db07cb7250c03d2ed6bffb2391 --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Baby_Products.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:986cfec861016f5baedbeee8226c05db02b3dbd6d2efeeede97ee1ce0bc3cea9 +size 13701355 diff --git a/benchmark/5core/timestamp_w_his/Beauty_and_Personal_Care.test.csv b/benchmark/5core/timestamp_w_his/Beauty_and_Personal_Care.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..846d71c5757df6724ea9a8b70f953637997371b1 --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Beauty_and_Personal_Care.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d115e0bc3038add8b4700fd196fc645f065095a9a63afb410371faf5e5a7f3d +size 515172001 diff --git a/benchmark/5core/timestamp_w_his/Beauty_and_Personal_Care.train.csv b/benchmark/5core/timestamp_w_his/Beauty_and_Personal_Care.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..27c0089306ac1b2a952053e600ee3c0c0c7f239a --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Beauty_and_Personal_Care.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:20096df8829e75673a23a45ccc1e92921c8347f19ce8be18d522c8fa5e665722 +size 765109579 diff --git a/benchmark/5core/timestamp_w_his/Beauty_and_Personal_Care.valid.csv b/benchmark/5core/timestamp_w_his/Beauty_and_Personal_Care.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..f294e3ee139b0eda65ade01482b09197f3a96f7f --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Beauty_and_Personal_Care.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:222fee40e8e28513b94d91500df5a32f33264db7ef9c540aa78e2f33e954c195 +size 300393986 diff --git a/benchmark/5core/timestamp_w_his/Books.test.csv b/benchmark/5core/timestamp_w_his/Books.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..6c639d1f06c644b00f77216656b3e95cb51bb9d1 --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Books.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60553a5bc7b6b6cc826c335926f9263feef5313873a1ba04f3bdf261e667ca85 +size 189466088 diff --git a/benchmark/5core/timestamp_w_his/Books.train.csv b/benchmark/5core/timestamp_w_his/Books.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..71c7a8a549605b34309cef244031b1ed7e780b89 --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Books.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8859eebbdeec7a24f37856c00a20a691bee520c533d10ac1307a9ae9a1be84d7 +size 3134649237 diff --git a/benchmark/5core/timestamp_w_his/Books.valid.csv b/benchmark/5core/timestamp_w_his/Books.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..6938d101f4e6d27ee6129588abe0165de9c02f82 --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Books.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce621ed772b2ff61d9425476afb112029e38c9b295243ad8dbfeeb0b46a1bde4 +size 236537980 diff --git a/benchmark/5core/timestamp_w_his/CDs_and_Vinyl.test.csv b/benchmark/5core/timestamp_w_his/CDs_and_Vinyl.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..26d7b6b2f8e580eab8639c96d4f248f554f518e9 --- /dev/null +++ b/benchmark/5core/timestamp_w_his/CDs_and_Vinyl.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:12ff62aa7f978a5404debe60e7839df34a8b138e8e62c9b662ed2c56f6e08bb4 +size 8556328 diff --git a/benchmark/5core/timestamp_w_his/CDs_and_Vinyl.train.csv b/benchmark/5core/timestamp_w_his/CDs_and_Vinyl.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..d029fbdf2d6f0769a02a76388511bd34a497ee50 --- /dev/null +++ b/benchmark/5core/timestamp_w_his/CDs_and_Vinyl.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f86b2edd2bc34b627e720e19f8dba299bae4c8527a903ede7eb59cf954b1143d +size 519810924 diff --git a/benchmark/5core/timestamp_w_his/CDs_and_Vinyl.valid.csv b/benchmark/5core/timestamp_w_his/CDs_and_Vinyl.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..21ea9beda783eb73456fcccbf595c9f9e7071d47 --- /dev/null +++ b/benchmark/5core/timestamp_w_his/CDs_and_Vinyl.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4636a8567b287cc13c6881db6393bd27574175cfb95731e46544a00682a74026 +size 11512113 diff --git a/benchmark/5core/timestamp_w_his/Cell_Phones_and_Accessories.test.csv b/benchmark/5core/timestamp_w_his/Cell_Phones_and_Accessories.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..7255484d1b6343f57f346ed70962501b16732d1f --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Cell_Phones_and_Accessories.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed8147dbee14ff394f73a2632fb304eaaaf1427663a19ac27bf1a7d56897d2ac +size 44134899 diff --git a/benchmark/5core/timestamp_w_his/Cell_Phones_and_Accessories.train.csv b/benchmark/5core/timestamp_w_his/Cell_Phones_and_Accessories.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..c5c9bb0ed019fda8bdfc64f6c4323b400855e192 --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Cell_Phones_and_Accessories.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:29a6530d4b5de7111b2a8afd87a28418596bea1901c67307bfcc52cb355d5394 +size 215062435 diff --git a/benchmark/5core/timestamp_w_his/Cell_Phones_and_Accessories.valid.csv b/benchmark/5core/timestamp_w_his/Cell_Phones_and_Accessories.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..1c3b691374ebf119d8e2c47adbb62dd198e79aa6 --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Cell_Phones_and_Accessories.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3aeb2c94ab89452ff40f322fbbc47abe0b16401c03353f76070c7989012bbe61 +size 29659943 diff --git a/benchmark/5core/timestamp_w_his/Clothing_Shoes_and_Jewelry.test.csv b/benchmark/5core/timestamp_w_his/Clothing_Shoes_and_Jewelry.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..354734b03fd55c837d4183b17a7892f6f54382a4 --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Clothing_Shoes_and_Jewelry.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc667db76bb0a324311c2df79b16d31db301e7e1116c23df3ddbd54b92993879 +size 855236078 diff --git a/benchmark/5core/timestamp_w_his/Clothing_Shoes_and_Jewelry.train.csv b/benchmark/5core/timestamp_w_his/Clothing_Shoes_and_Jewelry.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..517f269df0cd362d37e64b2d67e3d1f67bfff803 --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Clothing_Shoes_and_Jewelry.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a0b5b7dabc85c0832ecfb151dbe66da75b2187f00f7116f1743270c05536596 +size 2164397405 diff --git a/benchmark/5core/timestamp_w_his/Clothing_Shoes_and_Jewelry.valid.csv b/benchmark/5core/timestamp_w_his/Clothing_Shoes_and_Jewelry.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..4a9735297a93e21749444d27343e780802616b7c --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Clothing_Shoes_and_Jewelry.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:184966031dec3faf148cce54ae2dd34c631b52584ca851b7870c9d1b26fae3d6 +size 558739144 diff --git a/benchmark/5core/timestamp_w_his/Electronics.test.csv b/benchmark/5core/timestamp_w_his/Electronics.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..fdc0c507459802024ede082cc1bfdf057adf2072 --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Electronics.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67e7c62480dd4618960e922c244719f544d5ada508f175fd27ba572ed123338d +size 275071595 diff --git a/benchmark/5core/timestamp_w_his/Electronics.train.csv b/benchmark/5core/timestamp_w_his/Electronics.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..59e4e9749cb3275623d7dc4f20caab91b6bdab87 --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Electronics.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdf96cfc83108b6e2169b480d446a29aa880be76360cd36d6f94096b8cb64a56 +size 1805318404 diff --git a/benchmark/5core/timestamp_w_his/Electronics.valid.csv b/benchmark/5core/timestamp_w_his/Electronics.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..3dccf6aed522e1500657688f9656aa239bd0c032 --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Electronics.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5184a14a9beb9e4145b5eabfd83c7e66abc887b854ac49deeca26242bf964645 +size 227519791 diff --git a/benchmark/5core/timestamp_w_his/Gift_Cards.test.csv b/benchmark/5core/timestamp_w_his/Gift_Cards.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..a40d1c5a580e6d534a8b4e458251b9ffc5bd73aa --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Gift_Cards.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6298d25ecf4b02e4201d5fbb0c960b4d191dbc757fe9839f0295fa373276fe70 +size 11415 diff --git a/benchmark/5core/timestamp_w_his/Gift_Cards.train.csv b/benchmark/5core/timestamp_w_his/Gift_Cards.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..195d8017893e010e344230cd9ad42f83443315d9 --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Gift_Cards.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56e022d8b489aa7f43acf315e484625f5d0d3b8eab89f64bf873221da96cb57d +size 200705 diff --git a/benchmark/5core/timestamp_w_his/Gift_Cards.valid.csv b/benchmark/5core/timestamp_w_his/Gift_Cards.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..13d6937cd4605dad0ad17777e40eb7c7f75a719e --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Gift_Cards.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ec05515ace4f991045a93ba0673a47cca666e25f9c4a13b73c95e8f6ab2bd45 +size 15426 diff --git a/benchmark/5core/timestamp_w_his/Grocery_and_Gourmet_Food.test.csv b/benchmark/5core/timestamp_w_his/Grocery_and_Gourmet_Food.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..37a90880ef0a805e598b4b720852407cefb17803 --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Grocery_and_Gourmet_Food.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:68d8530059479778ccf091e3a3d5a5ab04f0fced72e9511a461edfb2c274b51a +size 153997443 diff --git a/benchmark/5core/timestamp_w_his/Grocery_and_Gourmet_Food.train.csv b/benchmark/5core/timestamp_w_his/Grocery_and_Gourmet_Food.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..0e38928d42c693e5168c3c33b8c5024940a3300c --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Grocery_and_Gourmet_Food.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:347f1559d4e1e03bb0e3ab55a82b6206a05a83444e8aaeddd1ab611460b87cea +size 477419477 diff --git a/benchmark/5core/timestamp_w_his/Grocery_and_Gourmet_Food.valid.csv b/benchmark/5core/timestamp_w_his/Grocery_and_Gourmet_Food.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..dccf7548d6768f5b1885695cdfe713271acd2344 --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Grocery_and_Gourmet_Food.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb910f3be022ab1fcd4c54eadd129dd419ce868aec7a548116e50acc8503e67e +size 164623715 diff --git a/benchmark/5core/timestamp_w_his/Health_and_Household.test.csv b/benchmark/5core/timestamp_w_his/Health_and_Household.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..a2437efb0b3f970e41769819f312f7d00f67eeca --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Health_and_Household.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e243f4a5781c506cedb899d2229244ac190cd357be6cc7d37727ee494a608a4 +size 321766322 diff --git a/benchmark/5core/timestamp_w_his/Health_and_Household.train.csv b/benchmark/5core/timestamp_w_his/Health_and_Household.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..705b236895158f387ad0efd07f746f7b108ec478 --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Health_and_Household.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6de7e09da73619029fd1c664d5c6452bf82b507135a3e64e6189c9598423bf1e +size 774278808 diff --git a/benchmark/5core/timestamp_w_his/Health_and_Household.valid.csv b/benchmark/5core/timestamp_w_his/Health_and_Household.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..c492e2ace75ca95803ca5e7ec6c2d5dc8c33d2dc --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Health_and_Household.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c988171aad6c0869b593e0928fe3cfaf1102c7e2c730935f4946a1660dcf6266 +size 264783061 diff --git a/benchmark/5core/timestamp_w_his/Home_and_Kitchen.test.csv b/benchmark/5core/timestamp_w_his/Home_and_Kitchen.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..a6e928c8018efc40deb35bc52c2919aee3ea54b0 --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Home_and_Kitchen.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79486f677a769c8ad4fbf18b54d498cd8434cf3eb2423d8f70dd26078ec3c328 +size 1068140349 diff --git a/benchmark/5core/timestamp_w_his/Home_and_Kitchen.train.csv b/benchmark/5core/timestamp_w_his/Home_and_Kitchen.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..ee4de1b93d19126ef4cb2038f42a78e7b2e806ee --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Home_and_Kitchen.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:595ac4c250bc7a2835e2c8b025bc71eb07cb86b964b33e92d6613509ce7d93eb +size 2958400243 diff --git a/benchmark/5core/timestamp_w_his/Home_and_Kitchen.valid.csv b/benchmark/5core/timestamp_w_his/Home_and_Kitchen.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..05619ea1264b1430c15c150a9a8d4abc69d334b5 --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Home_and_Kitchen.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b0b1a97713e0f95567e61866ee66b1df6871614c0bf110686878a7719515a79 +size 697380329 diff --git a/benchmark/5core/timestamp_w_his/Industrial_and_Scientific.test.csv b/benchmark/5core/timestamp_w_his/Industrial_and_Scientific.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..9483984e03e2ffd7791223b690ad041670e05bf4 --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Industrial_and_Scientific.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f851c247c19ec9c2c9ea3cfbaa113d705756741d96392ca2002268db1cff132 +size 12427457 diff --git a/benchmark/5core/timestamp_w_his/Industrial_and_Scientific.train.csv b/benchmark/5core/timestamp_w_his/Industrial_and_Scientific.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..e08376b6008a0c121753b331b2c8f6e9ce04f00d --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Industrial_and_Scientific.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0545964d162db9f1f52f8df35b6abf9692eef54c0cbcf97bff750426fafda22 +size 31622468 diff --git a/benchmark/5core/timestamp_w_his/Industrial_and_Scientific.valid.csv b/benchmark/5core/timestamp_w_his/Industrial_and_Scientific.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..6d04268e419443106494c4533ec99548892fa934 --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Industrial_and_Scientific.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99bf65248f5c1e179a816ec973496e16f815078b30fc952b017a4b945e49d8e6 +size 6510726 diff --git a/benchmark/5core/timestamp_w_his/Kindle_Store.test.csv b/benchmark/5core/timestamp_w_his/Kindle_Store.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..aef69a1a1bad0606cf5db2d9134423ee695eabae --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Kindle_Store.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:31ed92120978a6c5d0100a9cf8c8677bbcea2d99b48d36687e40234eabb194b3 +size 1657927956 diff --git a/benchmark/5core/timestamp_w_his/Kindle_Store.train.csv b/benchmark/5core/timestamp_w_his/Kindle_Store.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..be63bbd7255a68f6e021180c762917740b906049 --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Kindle_Store.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c96a4a79949d5ec2af5f802e5629c137f572bca93a2f45d4933e2fdef4b158cb +size 8390689129 diff --git a/benchmark/5core/timestamp_w_his/Kindle_Store.valid.csv b/benchmark/5core/timestamp_w_his/Kindle_Store.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..29cf17d6e81817bc3927645c0fcdedbcfd007a2d --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Kindle_Store.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9d15591ad214da62a7064a57f3467dc6ac330235626b41860bb617949c9fed9 +size 1859659563 diff --git a/benchmark/5core/timestamp_w_his/Magazine_Subscriptions.test.csv b/benchmark/5core/timestamp_w_his/Magazine_Subscriptions.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..86814297c15cd74b4a2e0dbb0a15d0a76247a1a3 --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Magazine_Subscriptions.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e447a5c158e51ba7db3bcb157589a8350b6ff09f31a7931176226b86674d082 +size 147 diff --git a/benchmark/5core/timestamp_w_his/Magazine_Subscriptions.train.csv b/benchmark/5core/timestamp_w_his/Magazine_Subscriptions.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..c3b7f551792873c040a0bcf49abdc9a0f4823242 --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Magazine_Subscriptions.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea1dec6b2deee8fbf0745f56d295d695a403f44e35ddf352338e75e086c03b73 +size 14344 diff --git a/benchmark/5core/timestamp_w_his/Magazine_Subscriptions.valid.csv b/benchmark/5core/timestamp_w_his/Magazine_Subscriptions.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..be3dd1072a2f6fce0734f9a02c6b66c2b9f1e897 --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Magazine_Subscriptions.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:762fbbc2cf926be182a238ec0b708f1ae228f6b8445089fd5fd264d9ff5f4276 +size 854 diff --git a/benchmark/5core/timestamp_w_his/Movies_and_TV.test.csv b/benchmark/5core/timestamp_w_his/Movies_and_TV.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..d4280f61b973a88e9fa6d687c386885ea59436bc --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Movies_and_TV.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8849c47692400d7b26286489bf2534be2d4fd661ba3d57d7bc076d922275ab2 +size 72889400 diff --git a/benchmark/5core/timestamp_w_his/Movies_and_TV.train.csv b/benchmark/5core/timestamp_w_his/Movies_and_TV.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..ca086b4deab76f24d0ab086c5adb2e9ca92bdab8 --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Movies_and_TV.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e7b8e10652f2161e8b9101ce40523146e07973137738b8c9a9155b3e458cce5d +size 1965098602 diff --git a/benchmark/5core/timestamp_w_his/Movies_and_TV.valid.csv b/benchmark/5core/timestamp_w_his/Movies_and_TV.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..dba7f9cf51c5d09fd3dd34758a6bc9e3bedc93e5 --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Movies_and_TV.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:813c42916301113efe858fc1e0d47d102cf4f50dbd7c0eb1b07007c33f1ccd90 +size 108707323 diff --git a/benchmark/5core/timestamp_w_his/Musical_Instruments.test.csv b/benchmark/5core/timestamp_w_his/Musical_Instruments.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..f75c3e6e0e6576305b569b1de7cd9a9c8a626cf2 --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Musical_Instruments.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ef5327f4245378463aaff8aaff579ccb657f092327f9280ab18694bbb55de4a +size 7959214 diff --git a/benchmark/5core/timestamp_w_his/Musical_Instruments.train.csv b/benchmark/5core/timestamp_w_his/Musical_Instruments.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..ae22bff0a0331ec4752bcbd33d291f80afbf48c6 --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Musical_Instruments.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67f44d1bab8a29ec6173e39ca5e7bbec32f0014e6625b26a85766786f6181e65 +size 53851926 diff --git a/benchmark/5core/timestamp_w_his/Musical_Instruments.valid.csv b/benchmark/5core/timestamp_w_his/Musical_Instruments.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..208c447912b3f3eed43d0208e06832eefcc39976 --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Musical_Instruments.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28dc3e53e543985094838e547a026ab5e085d05769bec5379fd2f3dccc134371 +size 6981348 diff --git a/benchmark/5core/timestamp_w_his/Office_Products.test.csv b/benchmark/5core/timestamp_w_his/Office_Products.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..bf3c9a60656078491fcf6b93982dd70ce7b2fe5f --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Office_Products.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbf113d7158996148464e470e8c8e685692e2fdc02103e3baa1199e7a0130e24 +size 39960093 diff --git a/benchmark/5core/timestamp_w_his/Office_Products.train.csv b/benchmark/5core/timestamp_w_his/Office_Products.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..6f123f5f8da5d9640dc61097fe57513de65a5bf5 --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Office_Products.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9147384b3b36d63c10eb551c43a949489c778c87988fcd175b7087b8f6d9a2d +size 168036596 diff --git a/benchmark/5core/timestamp_w_his/Office_Products.valid.csv b/benchmark/5core/timestamp_w_his/Office_Products.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..6a869d311384bab7cebee9691b696538b86ef90d --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Office_Products.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fee36286c991c4362759ca119d086e2a70c0e5532d2d771a523993d9aa4d8b1b +size 23156785 diff --git a/benchmark/5core/timestamp_w_his/Patio_Lawn_and_Garden.test.csv b/benchmark/5core/timestamp_w_his/Patio_Lawn_and_Garden.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..44e58cb489adc215addf7d5cfdb231376ac2773d --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Patio_Lawn_and_Garden.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66155d868e9f527205a59409a8f3c86a94d40895e806d3cda585310f85525f64 +size 93258137 diff --git a/benchmark/5core/timestamp_w_his/Patio_Lawn_and_Garden.train.csv b/benchmark/5core/timestamp_w_his/Patio_Lawn_and_Garden.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..3aed0f7f18a4da6ae3a9c1fa0d344a9ca25c7611 --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Patio_Lawn_and_Garden.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbce32aff2e0f06cda863a1b009772e9d6b8db9a69c3313b40f56c1bcf50e278 +size 278845202 diff --git a/benchmark/5core/timestamp_w_his/Patio_Lawn_and_Garden.valid.csv b/benchmark/5core/timestamp_w_his/Patio_Lawn_and_Garden.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..e6811693a30669cee2a7a9141f128eb2cc9ebd53 --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Patio_Lawn_and_Garden.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:feabfac61de0987a4bd13037d91a92fe1129210c0f6368a3264552dd3caab0f0 +size 69545461 diff --git a/benchmark/5core/timestamp_w_his/Pet_Supplies.test.csv b/benchmark/5core/timestamp_w_his/Pet_Supplies.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..fff853aa15956c9828ead0aa92af3ab7b0db747b --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Pet_Supplies.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a2ab8716f707ff1e1b29ae7b0cf377cf8ddf7153ec042285c966be3f10740a5 +size 111832869 diff --git a/benchmark/5core/timestamp_w_his/Pet_Supplies.train.csv b/benchmark/5core/timestamp_w_his/Pet_Supplies.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..4981d67e82db29f430873fdae2af884e44407568 --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Pet_Supplies.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:907cdf1b06d4fe09ecaa8b339a8f9cb228a9d61785aa3d64805478496312ed50 +size 529317343 diff --git a/benchmark/5core/timestamp_w_his/Pet_Supplies.valid.csv b/benchmark/5core/timestamp_w_his/Pet_Supplies.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..a5b68960cb676f7f1bfb5193b26941b3e93afdc0 --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Pet_Supplies.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:099d2276570b7a7d0e33f792a29b5b5c3ce45780511f5a49ce538a655a4228f0 +size 89349804 diff --git a/benchmark/5core/timestamp_w_his/Software.test.csv b/benchmark/5core/timestamp_w_his/Software.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..d90eaead6773bcba54f6185a14760e6353fa7285 --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Software.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a4f621470809f43f821764354260b033a07f761f62d9a6f47f3103b067e6ca9 +size 3454829 diff --git a/benchmark/5core/timestamp_w_his/Software.train.csv b/benchmark/5core/timestamp_w_his/Software.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..97381f0e78220a950dcd8a866056df76797ce2fc --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Software.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8bdf7ce4debd7decbd4ca5da72b0c3936d331fd556184612238fd7cf1f0a75e2 +size 160203086 diff --git a/benchmark/5core/timestamp_w_his/Software.valid.csv b/benchmark/5core/timestamp_w_his/Software.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..26414d29e305d807b7567cddefb3262d4343e828 --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Software.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03f2a473197d477055b43f262768d8470647bddad2fa9b7411472ab18601eeba +size 6251047 diff --git a/benchmark/5core/timestamp_w_his/Sports_and_Outdoors.test.csv b/benchmark/5core/timestamp_w_his/Sports_and_Outdoors.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..8df540c2d686d13207a53a802ce3563aaf76a8f3 --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Sports_and_Outdoors.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c129021d3feb6c559dca6b436e54a464ff1b7898f9b0f3f0ddb27c2b83299e9 +size 69911467 diff --git a/benchmark/5core/timestamp_w_his/Sports_and_Outdoors.train.csv b/benchmark/5core/timestamp_w_his/Sports_and_Outdoors.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..1c1b2b661dd96a1dc1694fe934b758f5739c7ea0 --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Sports_and_Outdoors.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f88cfe8187298596678dc94af4d5d06a93c81669739bc36a9bfcbd300fa0594 +size 344898565 diff --git a/benchmark/5core/timestamp_w_his/Sports_and_Outdoors.valid.csv b/benchmark/5core/timestamp_w_his/Sports_and_Outdoors.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..2aaa3da9c1061c6ed8d3596a46f6f9d5eaca8b3d --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Sports_and_Outdoors.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9b9fa7cbb1345bd5ed6b69349a4eecddb92ddbfe8d232ae6c1a9c62b7cc5a2e +size 44240785 diff --git a/benchmark/5core/timestamp_w_his/Tools_and_Home_Improvement.test.csv b/benchmark/5core/timestamp_w_his/Tools_and_Home_Improvement.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..4bef80f6e8549b2a9d6fa54cdeb3dbdfed0f63fb --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Tools_and_Home_Improvement.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eab08018af5a3f55ab0119117e2d65d576cd2ef791d3dc4f4806a240d164c956 +size 259048561 diff --git a/benchmark/5core/timestamp_w_his/Tools_and_Home_Improvement.train.csv b/benchmark/5core/timestamp_w_his/Tools_and_Home_Improvement.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..25921fe2b495c4f4ae517eb60e299b1a848a9e83 --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Tools_and_Home_Improvement.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cddd7ebecacf1449965d23b7c7d5b368f4121cc28624fd26878035859dde4e9 +size 804276408 diff --git a/benchmark/5core/timestamp_w_his/Tools_and_Home_Improvement.valid.csv b/benchmark/5core/timestamp_w_his/Tools_and_Home_Improvement.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..36fd7a0fad068f466069c0e666b2c77a96378437 --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Tools_and_Home_Improvement.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1bd6aae6373653929411396cc0307d5fb7da739f298ae4c631860bea30901cb +size 160633186 diff --git a/benchmark/5core/timestamp_w_his/Toys_and_Games.test.csv b/benchmark/5core/timestamp_w_his/Toys_and_Games.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..34cfe0e87bd83c56325b73d263ff23781023edfc --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Toys_and_Games.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ac477782c6d3183c7ae558e2c0d9ca4266ad5fbbcea26b12b316ad6c202da78 +size 122148510 diff --git a/benchmark/5core/timestamp_w_his/Toys_and_Games.train.csv b/benchmark/5core/timestamp_w_his/Toys_and_Games.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..840eebc08d6ef2e4ff8b7a639c06caec6dd3bf28 --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Toys_and_Games.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8031bd97745bf7938e216f8f303017f46bb170f2816163c2015d209832638c44 +size 453730888 diff --git a/benchmark/5core/timestamp_w_his/Toys_and_Games.valid.csv b/benchmark/5core/timestamp_w_his/Toys_and_Games.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..6f152b2c529f6309362149c74d8f34ab6a15611d --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Toys_and_Games.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3e992ec969c5814d5e3ded9453297f2222f607659b77ca9ca7f0dfdc5a21010 +size 67018600 diff --git a/benchmark/5core/timestamp_w_his/Unknown.test.csv b/benchmark/5core/timestamp_w_his/Unknown.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..56959926efe154810150191cf437a50261084032 --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Unknown.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:90f95edbd7c27cb805f0e9da2c7a253f5b959894fa085ff1283e62ec2230301f +size 62966770 diff --git a/benchmark/5core/timestamp_w_his/Unknown.train.csv b/benchmark/5core/timestamp_w_his/Unknown.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..06dc3e7d1ebcea6500483883c31e485d544115dc --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Unknown.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9cf303d416da19a2b80c21d937391a5e09a112451e47551e0f1f2cf54123f061 +size 2281449085 diff --git a/benchmark/5core/timestamp_w_his/Unknown.valid.csv b/benchmark/5core/timestamp_w_his/Unknown.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..54872c0eb9dde260fccec5eb8fa1650cfb6055ea --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Unknown.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a80096282ce30ac3d5e3eab180b26c3dc41581c82614c3143fe265f60a50b88 +size 91906294 diff --git a/benchmark/5core/timestamp_w_his/Video_Games.test.csv b/benchmark/5core/timestamp_w_his/Video_Games.test.csv new file mode 100644 index 0000000000000000000000000000000000000000..c71dcd81cd4eb07154030f3268eea38461aca7c5 --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Video_Games.test.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec974372367561a093e5c3b463141d2741b635e95bfe74c2ab7a5588059fc2e6 +size 6831841 diff --git a/benchmark/5core/timestamp_w_his/Video_Games.train.csv b/benchmark/5core/timestamp_w_his/Video_Games.train.csv new file mode 100644 index 0000000000000000000000000000000000000000..5787f9c9f9bc95e63ea216e924e1111cefa70314 --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Video_Games.train.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d776d08fea88e4668f0afd1d1f0f19903be230f686124c320a9d5b1736114b09 +size 101564123 diff --git a/benchmark/5core/timestamp_w_his/Video_Games.valid.csv b/benchmark/5core/timestamp_w_his/Video_Games.valid.csv new file mode 100644 index 0000000000000000000000000000000000000000..ef3dddb142bbb2e0b1eef309a42256b523ab07f4 --- /dev/null +++ b/benchmark/5core/timestamp_w_his/Video_Games.valid.csv @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1639a92b27f5e441d6e33ab0d848f40601cf257be39f94a3d51ef90580bc3ea0 +size 5487711 diff --git a/raw/meta_categories/meta_All_Beauty.jsonl b/raw/meta_categories/meta_All_Beauty.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..b8176f502133e31fd833cc5457ccbc32e2a3b13c --- /dev/null +++ b/raw/meta_categories/meta_All_Beauty.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cfbdf6d2ccf9c3ac52a4508b15f31f8f340508a245b65c3e3b5f461e06e97ef +size 212990142 diff --git a/raw/meta_categories/meta_Amazon_Fashion.jsonl b/raw/meta_categories/meta_Amazon_Fashion.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..8c5bb21d91964f25948986156d00a6d7b56d3178 --- /dev/null +++ b/raw/meta_categories/meta_Amazon_Fashion.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:629dde620a4001934a8af705f6e5514a1b2d349720c26876ee803b90051a62df +size 1422365805 diff --git a/raw/meta_categories/meta_Appliances.jsonl b/raw/meta_categories/meta_Appliances.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..85aa3cb95fc2ce9f36b231f71b441c6fd86741df --- /dev/null +++ b/raw/meta_categories/meta_Appliances.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b25ae892af7bc452c4a54b7e4fee52f4c3e9adf058768ca3cb07ecb8d328b41e +size 285298475 diff --git a/raw/meta_categories/meta_Arts_Crafts_and_Sewing.jsonl b/raw/meta_categories/meta_Arts_Crafts_and_Sewing.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..f3ab1d738834a888e90c0fecd911cba91944c53e --- /dev/null +++ b/raw/meta_categories/meta_Arts_Crafts_and_Sewing.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3dd463e900a76599494927a7e991a62660e4d5c47c3f6c4797e9dae9a65837b +size 2170215242 diff --git a/raw/meta_categories/meta_Automotive.jsonl b/raw/meta_categories/meta_Automotive.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..ffb8953d8fbf8cf19e7c5cb36a335b5851b39d5e --- /dev/null +++ b/raw/meta_categories/meta_Automotive.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8399c5ab84b2a5239e105974a33fb5d1d6d5e1e643291713008c096240ef6941 +size 5345616548 diff --git a/raw/meta_categories/meta_Baby_Products.jsonl b/raw/meta_categories/meta_Baby_Products.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..e39913b3e34015b8bc78bcf967ddb6f0eafbbd5f --- /dev/null +++ b/raw/meta_categories/meta_Baby_Products.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40250b693fc748cc0f24a5a2e762faa71e69aec4a9b934f625fd609f7cda6d7e +size 691003271 diff --git a/raw/meta_categories/meta_Beauty_and_Personal_Care.jsonl b/raw/meta_categories/meta_Beauty_and_Personal_Care.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..177c6070c43d3681503b881bda2391598a5939dd --- /dev/null +++ b/raw/meta_categories/meta_Beauty_and_Personal_Care.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8a69eba6579f1a3a2b6d6d564846f3c59839d0c859ff180a63a97a245c3bec2 +size 2835194976 diff --git a/raw/meta_categories/meta_Books.jsonl b/raw/meta_categories/meta_Books.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..b76662dd85662364ef6d51bf01d784796900c909 --- /dev/null +++ b/raw/meta_categories/meta_Books.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b008960580e390874b6723d438a3df3558bc98b9547ed37c90dc1659109cec7 +size 14697581022 diff --git a/raw/meta_categories/meta_CDs_and_Vinyl.jsonl b/raw/meta_categories/meta_CDs_and_Vinyl.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..0601d17a03de5dd17894695f4a7443236cdb1f45 --- /dev/null +++ b/raw/meta_categories/meta_CDs_and_Vinyl.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c52275a5bce63bf293f987bff5ff1f2b268982797545f3df2b7662ab638e8aec +size 948861684 diff --git a/raw/meta_categories/meta_Cell_Phones_and_Accessories.jsonl b/raw/meta_categories/meta_Cell_Phones_and_Accessories.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..16c0c10777030287478913b541fa5ac8bde9e8be --- /dev/null +++ b/raw/meta_categories/meta_Cell_Phones_and_Accessories.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8f411a2e3a90560de4b18a0c2c885a4ba410bb26f965a8e7290080898d22688 +size 4015159840 diff --git a/raw/meta_categories/meta_Clothing_Shoes_and_Jewelry.jsonl b/raw/meta_categories/meta_Clothing_Shoes_and_Jewelry.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..d61e86893bde8210b9f5d86a98d5b9c9ee01c487 --- /dev/null +++ b/raw/meta_categories/meta_Clothing_Shoes_and_Jewelry.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e5ff908573938ee114e4f4dfcfc46799b0ead24a57a8c075fbca2e6e28d78382 +size 17960532903 diff --git a/raw/meta_categories/meta_Digital_Music.jsonl b/raw/meta_categories/meta_Digital_Music.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..183caa0c4a434d6e87d03b65ec8e1b73433dc54d --- /dev/null +++ b/raw/meta_categories/meta_Digital_Music.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f5387e99b70631d919c87005269c555e8886ae9a60c4c59a9b6ed7881acbbec +size 67097002 diff --git a/raw/meta_categories/meta_Electronics.jsonl b/raw/meta_categories/meta_Electronics.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..acc62365af331695827814304c2710e01a344fe6 --- /dev/null +++ b/raw/meta_categories/meta_Electronics.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5eb4dabd539586c49654297319ef178b62a2fe8e43108376feda125f04455d93 +size 5246144134 diff --git a/raw/meta_categories/meta_Gift_Cards.jsonl b/raw/meta_categories/meta_Gift_Cards.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..f28dd3bbf151aee292030bac8a6179bb8e7a68b5 --- /dev/null +++ b/raw/meta_categories/meta_Gift_Cards.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7909903c85f0690b4ff653981724af1ea6473e7b21a7e32c7adae5026240808f +size 2038189 diff --git a/raw/meta_categories/meta_Grocery_and_Gourmet_Food.jsonl b/raw/meta_categories/meta_Grocery_and_Gourmet_Food.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..fcbb03360c8dc0c2f95aad5585de336b3f3bf562 --- /dev/null +++ b/raw/meta_categories/meta_Grocery_and_Gourmet_Food.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed9b24ea707f7010b5cb321462a8e896ad1fcd59620fbc55f05084c3da59842e +size 1382105675 diff --git a/raw/meta_categories/meta_Handmade_Products.jsonl b/raw/meta_categories/meta_Handmade_Products.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..4f69209349678cf597292a6b55d0f6f898fc667b --- /dev/null +++ b/raw/meta_categories/meta_Handmade_Products.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c47e8f247dab7ec1d2fac93050e79a40ad5d31c3fe073838af29694fc1690530 +size 399261431 diff --git a/raw/meta_categories/meta_Health_and_Household.jsonl b/raw/meta_categories/meta_Health_and_Household.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..cbeafd4bfdd5f79609563093c5619c71fc46ac7d --- /dev/null +++ b/raw/meta_categories/meta_Health_and_Household.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a26906c721929a04e887eb7aac560e58e0c4f0a65ec5b24a047a560a43f0bc1 +size 2468505069 diff --git a/raw/meta_categories/meta_Health_and_Personal_Care.jsonl b/raw/meta_categories/meta_Health_and_Personal_Care.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..6a1714ae407aa187dc1d77c2ca861038fa71fabd --- /dev/null +++ b/raw/meta_categories/meta_Health_and_Personal_Care.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb7f147cac85ce22e6d9b63e8f8504e85032c8a666e8634a1f101a9533983c0a +size 118005874 diff --git a/raw/meta_categories/meta_Home_and_Kitchen.jsonl b/raw/meta_categories/meta_Home_and_Kitchen.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..3522d83db9b5a2582078795c9539c2804ab38275 --- /dev/null +++ b/raw/meta_categories/meta_Home_and_Kitchen.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:691353084748d985180deb13dc8de59afe4969933ad3692ea06b80460510aa56 +size 11788767944 diff --git a/raw/meta_categories/meta_Industrial_and_Scientific.jsonl b/raw/meta_categories/meta_Industrial_and_Scientific.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..758e8abbc34929e3edd4369a6133ce235e00bcd1 --- /dev/null +++ b/raw/meta_categories/meta_Industrial_and_Scientific.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:114fcde36f6205bde5d0ebed24613a35e475aa06b285011ed1e892dc26da3942 +size 1130006344 diff --git a/raw/meta_categories/meta_Kindle_Store.jsonl b/raw/meta_categories/meta_Kindle_Store.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..5fea8f72b7868b2545d3334f15f107a910a86abb --- /dev/null +++ b/raw/meta_categories/meta_Kindle_Store.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:acdaba5f1fb83805a2bf032ba3c7ddb83c695b03d6c41b785a81070d3b66a145 +size 6865237738 diff --git a/raw/meta_categories/meta_Magazine_Subscriptions.jsonl b/raw/meta_categories/meta_Magazine_Subscriptions.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..943f0734f96c7891856a56969c9c316ad40bf4e3 --- /dev/null +++ b/raw/meta_categories/meta_Magazine_Subscriptions.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b325bc690a4b705338dfc3dd45ace5ec643dc6212cbb0c614a9b05f236ec12ab +size 4096541 diff --git a/raw/meta_categories/meta_Movies_and_TV.jsonl b/raw/meta_categories/meta_Movies_and_TV.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..a4df0e2158a52530715ab236827cc821fda88089 --- /dev/null +++ b/raw/meta_categories/meta_Movies_and_TV.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:beb82feef266bfa6d2e279903fd823a8b3b9c065059e1048226d0b74dc16b47d +size 1285744674 diff --git a/raw/meta_categories/meta_Musical_Instruments.jsonl b/raw/meta_categories/meta_Musical_Instruments.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..2472b2720286922c770f94a2fb368c05d15f7523 --- /dev/null +++ b/raw/meta_categories/meta_Musical_Instruments.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96f40b5440918f07e3e08e84b7a6874a06a5e32a9988998ca9520cfd1b51a12c +size 631877970 diff --git a/raw/meta_categories/meta_Office_Products.jsonl b/raw/meta_categories/meta_Office_Products.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..da2a04a5ceab83eed7ad447d47c0d37352b832d5 --- /dev/null +++ b/raw/meta_categories/meta_Office_Products.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9709095587ee34b2d5e639ca69de2a6fc8ab1953c467b86715e409c5ad78314 +size 2146468843 diff --git a/raw/meta_categories/meta_Patio_Lawn_and_Garden.jsonl b/raw/meta_categories/meta_Patio_Lawn_and_Garden.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..e9dc7cfbcfebd5614122e8d084cffa6739c2f022 --- /dev/null +++ b/raw/meta_categories/meta_Patio_Lawn_and_Garden.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a48d1328e6d1db8728764f124f64d35b7001a73d46beeaea5d390332a5afc8e +size 2714096874 diff --git a/raw/meta_categories/meta_Pet_Supplies.jsonl b/raw/meta_categories/meta_Pet_Supplies.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..92d96d5e8dab6bd52bd4f5885e02d831f868ac5a --- /dev/null +++ b/raw/meta_categories/meta_Pet_Supplies.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69dfa0e6b34e8c34f5704fbf05682eb3edacac95d9b8e1fbf3f74720cbf67e50 +size 1571293235 diff --git a/raw/meta_categories/meta_Software.jsonl b/raw/meta_categories/meta_Software.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..58610bdc54784a183f2991a1cdd99abe1a0cf2e0 --- /dev/null +++ b/raw/meta_categories/meta_Software.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c52cce1bf3bff33f965fe117e3e8fac18a1839f88b215efa50b31a8230a5f58 +size 256220771 diff --git a/raw/meta_categories/meta_Sports_and_Outdoors.jsonl b/raw/meta_categories/meta_Sports_and_Outdoors.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..9cdc8d6d482339505925951471939516168b2edb --- /dev/null +++ b/raw/meta_categories/meta_Sports_and_Outdoors.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:321aba659220c48a8dcf2a4034f1eb965fae031941d81c9b7e47811caae85db9 +size 4132263769 diff --git a/raw/meta_categories/meta_Subscription_Boxes.jsonl b/raw/meta_categories/meta_Subscription_Boxes.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..15c5bc456115c20d5702fd0af05527dd8ef84fa8 --- /dev/null +++ b/raw/meta_categories/meta_Subscription_Boxes.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b29c7bb1e3ad1419c33142c76d39782a9b8ae2fcbe27641186b88a10e1f31575 +size 1399864 diff --git a/raw/meta_categories/meta_Tools_and_Home_Improvement.jsonl b/raw/meta_categories/meta_Tools_and_Home_Improvement.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..e7fca64991c43464b32b64e6ea0afa8592e06e55 --- /dev/null +++ b/raw/meta_categories/meta_Tools_and_Home_Improvement.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b0e1ab6275a055fd1337d94dca6029eb401c31e21496608192d6564c1f25b0b +size 4850689793 diff --git a/raw/meta_categories/meta_Toys_and_Games.jsonl b/raw/meta_categories/meta_Toys_and_Games.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..dbc3ed15228bd783a9e7e38620d1525f9e706b7e --- /dev/null +++ b/raw/meta_categories/meta_Toys_and_Games.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:caca4bc34518426d45e2924d1042923d9d3cd89eb69f4daeb0b3a9c87e278a9a +size 2637909430 diff --git a/raw/meta_categories/meta_Unknown.jsonl b/raw/meta_categories/meta_Unknown.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..06a589972b224d0c2da19bcea2908ba87c68666a --- /dev/null +++ b/raw/meta_categories/meta_Unknown.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be2ace4f62de51e041c838792d2fbe74a52487e8aca20f39fd729d1852e3a645 +size 674824926 diff --git a/raw/meta_categories/meta_Video_Games.jsonl b/raw/meta_categories/meta_Video_Games.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..8eec540943538b1f6f8f0a78b6607cf10808268e --- /dev/null +++ b/raw/meta_categories/meta_Video_Games.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3ad94dfaa8dfed23c5f420aa9ddec415d00f2b8ec9f2d796f487b4b2c4d256de +size 437375785 diff --git a/raw/review_categories/All_Beauty.jsonl b/raw/review_categories/All_Beauty.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..6f058eabef845c6da255833bf276a2be2d136bf3 --- /dev/null +++ b/raw/review_categories/All_Beauty.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:36ca7c48440a8247b2dca0174d095238422b506a8a80c114dca722b7715f1c94 +size 326611506 diff --git a/raw/review_categories/Amazon_Fashion.jsonl b/raw/review_categories/Amazon_Fashion.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..eca8cff7e9cd2ae00efb2909eaa981d784f9bfe3 --- /dev/null +++ b/raw/review_categories/Amazon_Fashion.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e597b3ce6cbb2f9994a32e0eee6bb04fdae50725f2d49c89f6baef1a7b986c57 +size 1051324731 diff --git a/raw/review_categories/Appliances.jsonl b/raw/review_categories/Appliances.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..4978b37f088c24da0de70229618955c10b39f68f --- /dev/null +++ b/raw/review_categories/Appliances.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9dd03aa9be0c8e6fea66d8ce99a7e5b359e272d6323186c1aa80f6d36af1dab +size 929451412 diff --git a/raw/review_categories/Arts_Crafts_and_Sewing.jsonl b/raw/review_categories/Arts_Crafts_and_Sewing.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..8c0fa201f502c6263def87da43e972ae6044b0c8 --- /dev/null +++ b/raw/review_categories/Arts_Crafts_and_Sewing.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2f6698cdb0c1f712e38718e02efc1b74641c31bf6745be14af85583399e74df +size 3945063799 diff --git a/raw/review_categories/Automotive.jsonl b/raw/review_categories/Automotive.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..c9a64e243004ed241ffc562733715bbcbe535248 --- /dev/null +++ b/raw/review_categories/Automotive.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ca28ebd15a7e26f8bb3289d65e26784b39c9661d1f5dc030ecc9fef0211eced +size 8727689027 diff --git a/raw/review_categories/Baby_Products.jsonl b/raw/review_categories/Baby_Products.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..260261d74a6c688987c97d1da70e83aa0df42e09 --- /dev/null +++ b/raw/review_categories/Baby_Products.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ab12d566ebc1162d5a197721d4da787261e036455d054ad8d858af7380e0a45 +size 2947785967 diff --git a/raw/review_categories/Beauty_and_Personal_Care.jsonl b/raw/review_categories/Beauty_and_Personal_Care.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..1031f8c4a9824368cd58abcb0a09882c270fa035 --- /dev/null +++ b/raw/review_categories/Beauty_and_Personal_Care.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24f139d51014f50c052b69bdf5ca95e2e2656e80aabda2da3fdad29bb1931a53 +size 11021458876 diff --git a/raw/review_categories/Books.jsonl b/raw/review_categories/Books.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..9c838963eb4e049a84b1ddf09a887bf825374e51 --- /dev/null +++ b/raw/review_categories/Books.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14f524701f3e6e850d938e09961675c397078eb7af06a99892af8fab811d5a0d +size 20121186727 diff --git a/raw/review_categories/CDs_and_Vinyl.jsonl b/raw/review_categories/CDs_and_Vinyl.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..eae65a2f1fb21de8969bf2cec61f7ca935ecfe8d --- /dev/null +++ b/raw/review_categories/CDs_and_Vinyl.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4692a40ee4b9bcc5f7ee58edeffb211138e02641c3fdfd55f77843430cb34cbc +size 3287195043 diff --git a/raw/review_categories/Cell_Phones_and_Accessories.jsonl b/raw/review_categories/Cell_Phones_and_Accessories.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..52c754a312229eafc05ce47f7b861967957f2b63 --- /dev/null +++ b/raw/review_categories/Cell_Phones_and_Accessories.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bda42ca8d28a1e57db970c78703b7aaac9c9beb6595e1be00364a0a55a682cd5 +size 9342568048 diff --git a/raw/review_categories/Clothing_Shoes_and_Jewelry.jsonl b/raw/review_categories/Clothing_Shoes_and_Jewelry.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..33c68474d2d9e7eef9d1ff21a92cf9b7cfcb34ad --- /dev/null +++ b/raw/review_categories/Clothing_Shoes_and_Jewelry.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:150eb2a9e88f61cd5a89c5337cde437dc71308c47f22899a72d9e1dad60b7356 +size 27810080533 diff --git a/raw/review_categories/Digital_Music.jsonl b/raw/review_categories/Digital_Music.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..8807743a0ffe912dc55280f47d94c6e1f5223de2 --- /dev/null +++ b/raw/review_categories/Digital_Music.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ac137137e55e34fce290670fdf44acee5afa2ffae541f4f3b366a835930a7c3 +size 78823304 diff --git a/raw/review_categories/Electronics.jsonl b/raw/review_categories/Electronics.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..3c65807961381bdd0ef1ac3d54330da7186bd3e2 --- /dev/null +++ b/raw/review_categories/Electronics.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf11cf9c94c23ead7d3ffb174d18231fad8fcd76e72ad167f538a5599a38de8e +size 22616233652 diff --git a/raw/review_categories/Gift_Cards.jsonl b/raw/review_categories/Gift_Cards.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..f8091e4b8b5b8453584421e93f1cb73f21a6a9b1 --- /dev/null +++ b/raw/review_categories/Gift_Cards.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7ceead0dd6378eebfc6f4736402f85cc08e8dcb328f813c95ca68fc62d9544e +size 50231035 diff --git a/raw/review_categories/Grocery_and_Gourmet_Food.jsonl b/raw/review_categories/Grocery_and_Gourmet_Food.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..8a28f9da9498998408bebe97635947678ce291fc --- /dev/null +++ b/raw/review_categories/Grocery_and_Gourmet_Food.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd68ea63cd101de7a0f8ae53896a0ce6b4d1d61fdef63cc02fad303e5f1244c6 +size 5973991903 diff --git a/raw/review_categories/Handmade_Products.jsonl b/raw/review_categories/Handmade_Products.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..68dfe868b7fff44a124a47c2ecd0fc362e22242f --- /dev/null +++ b/raw/review_categories/Handmade_Products.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7576d7743e83806d155e506a6bce13c25d9979ab13522e9a1cf2dc593144e65c +size 289025980 diff --git a/raw/review_categories/Health_and_Household.jsonl b/raw/review_categories/Health_and_Household.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..1190cbc3150bc6e2ba940f754fc7c00fa06bf50d --- /dev/null +++ b/raw/review_categories/Health_and_Household.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8256271e6d566745656cd946e200a43ad08ff5e046daacfc54535bfd95be4b4 +size 11395356745 diff --git a/raw/review_categories/Health_and_Personal_Care.jsonl b/raw/review_categories/Health_and_Personal_Care.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..5368a74caf0c4c2dfe0ceb790bb36081d3701565 --- /dev/null +++ b/raw/review_categories/Health_and_Personal_Care.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b532849dcf8e42910ce688ad423b3c1622ce860e7bf88a3641358bb89f345d02 +size 226990293 diff --git a/raw/review_categories/Home_and_Kitchen.jsonl b/raw/review_categories/Home_and_Kitchen.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..e74f62044429cbbd2c347de14cbf8583a119b764 --- /dev/null +++ b/raw/review_categories/Home_and_Kitchen.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88f2ed8cda172b18201a9d8577ab461255b9ecec99581c1ee05c5e1b4105262b +size 31408889188 diff --git a/raw/review_categories/Industrial_and_Scientific.jsonl b/raw/review_categories/Industrial_and_Scientific.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..5e582ba696d2f7c2e722d4eeb0a2dd6c80a4c9d6 --- /dev/null +++ b/raw/review_categories/Industrial_and_Scientific.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:361f68c9535f038fab119099e79207099bee60b2cd7a98246c36b3b12c7aa678 +size 2347015351 diff --git a/raw/review_categories/Kindle_Store.jsonl b/raw/review_categories/Kindle_Store.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..ab790c5e550d2b2e260a1f053be22f7dba14fa00 --- /dev/null +++ b/raw/review_categories/Kindle_Store.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82024e17fdd988f47d8b5ae679643965255ae5164f9f494d6ba28ab9cc0efa76 +size 15800555546 diff --git a/raw/review_categories/Magazine_Subscriptions.jsonl b/raw/review_categories/Magazine_Subscriptions.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..4351679ab98a89b4cfa78a994ef3b353bec8cd50 --- /dev/null +++ b/raw/review_categories/Magazine_Subscriptions.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bf36b04bbfb41f43c49b4adbdc13969014311ffb2344f706d13c35cdea5662da +size 33297013 diff --git a/raw/review_categories/Movies_and_TV.jsonl b/raw/review_categories/Movies_and_TV.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..0c84ccdc21a74eb5d9fd55d715dcbc9a2009bac6 --- /dev/null +++ b/raw/review_categories/Movies_and_TV.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4eb7428d5f48baae5a7f1132ef556e6e98181b122085ac24b34b25e033c3130a +size 8391445499 diff --git a/raw/review_categories/Musical_Instruments.jsonl b/raw/review_categories/Musical_Instruments.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..6d0512962af597f9ec36a6e126cb1048360021c9 --- /dev/null +++ b/raw/review_categories/Musical_Instruments.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:63aee24d5b9eaf0069cf638703e2d62eb80fde5d2c00ca3d29881d645f6214b3 +size 1557845107 diff --git a/raw/review_categories/Office_Products.jsonl b/raw/review_categories/Office_Products.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..c065ac4a5339c5afc29c972378cc2c66e793b4c6 --- /dev/null +++ b/raw/review_categories/Office_Products.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82cc49670098220a314d398ceff6434599b54c27af5fa00ab9c0b4af9d9d9011 +size 5776792834 diff --git a/raw/review_categories/Patio_Lawn_and_Garden.jsonl b/raw/review_categories/Patio_Lawn_and_Garden.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..f3776444ca97b7894494e00ca333d6ebe6eaf5bd --- /dev/null +++ b/raw/review_categories/Patio_Lawn_and_Garden.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2923136d4013b1f728081ab42a488b8328164deb9b6a8e2efae8cf48ff7fe345 +size 7748207348 diff --git a/raw/review_categories/Pet_Supplies.jsonl b/raw/review_categories/Pet_Supplies.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..1f13fafbdc26dd70fcef3fd8e241c9a9ba9588af --- /dev/null +++ b/raw/review_categories/Pet_Supplies.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad9e71383eb02674a7514181bb3eb57eec36695ea2cd28143b70df5d1da72ee3 +size 8350775233 diff --git a/raw/review_categories/Software.jsonl b/raw/review_categories/Software.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..875b3a7bf615ff8ca13745a1ffbd3783730e0fdf --- /dev/null +++ b/raw/review_categories/Software.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc119f99c466a39a09e2513c9e48eb5821fb42b1459f3026bcf71b08e6770741 +size 1869151448 diff --git a/raw/review_categories/Sports_and_Outdoors.jsonl b/raw/review_categories/Sports_and_Outdoors.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..b6923e67fa1d4dacfad6d3622943213e8e5aa286 --- /dev/null +++ b/raw/review_categories/Sports_and_Outdoors.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:47eaab08457fd7d270613f193506c479492b696a808ae5639a949b27026a4559 +size 9256856041 diff --git a/raw/review_categories/Subscription_Boxes.jsonl b/raw/review_categories/Subscription_Boxes.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..369fb786239e06a8dbfe0b5b51eaf2a094a59813 --- /dev/null +++ b/raw/review_categories/Subscription_Boxes.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52e08112faa2b8769b35d364cbd3b8ac674ddd56621b171e7531a5a2071f460f +size 8953020 diff --git a/raw/review_categories/Tools_and_Home_Improvement.jsonl b/raw/review_categories/Tools_and_Home_Improvement.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..5fccc529147b703040f434ab01d9bb31b21613ee --- /dev/null +++ b/raw/review_categories/Tools_and_Home_Improvement.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cfcd11fef2d6346d88eec96ca48e28225e4795b4e93e6a265114c22755a348b +size 12779111772 diff --git a/raw/review_categories/Toys_and_Games.jsonl b/raw/review_categories/Toys_and_Games.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..210e822435adc1e7b9f75984b27f238937d7bd0e --- /dev/null +++ b/raw/review_categories/Toys_and_Games.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e6157468ea97963098fe6b14749eda8d16a4443e718dcf6cbd0726c781fd938 +size 7316094780 diff --git a/raw/review_categories/Unknown.jsonl b/raw/review_categories/Unknown.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..7b419eeca28f21e602aa34e88b9462e8154ca911 --- /dev/null +++ b/raw/review_categories/Unknown.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c1f58c580a747250877369b603e8959985b11ea079eddc88f66d1144e08d917b +size 29933791334 diff --git a/raw/review_categories/Video_Games.jsonl b/raw/review_categories/Video_Games.jsonl new file mode 100644 index 0000000000000000000000000000000000000000..20d6a3293e061f13a8fc2a25e358444dc7d6f51e --- /dev/null +++ b/raw/review_categories/Video_Games.jsonl @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7bde9e0a039bdb321e993bfe78a6c7d438fb1504b1ad152c0cb6a33a8b7cb26a +size 2682948518 diff --git a/raw_meta_All_Beauty/full-00000-of-00001.parquet b/raw_meta_All_Beauty/full-00000-of-00001.parquet new file mode 100644 index 0000000000000000000000000000000000000000..1cc8a7393baaffe346a9f8dd0e1e8e3f6d8d804d --- /dev/null +++ b/raw_meta_All_Beauty/full-00000-of-00001.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:14815cf1312a0d847364866e6876c8c73738993469067242870774c372c04387 +size 59635138 diff --git a/raw_meta_Arts_Crafts_and_Sewing/full-00000-of-00004.parquet b/raw_meta_Arts_Crafts_and_Sewing/full-00000-of-00004.parquet new file mode 100644 index 0000000000000000000000000000000000000000..5f76c8fc0f4cf9a92a1843611869584482825fd8 --- /dev/null +++ b/raw_meta_Arts_Crafts_and_Sewing/full-00000-of-00004.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db1b95d515a9b8f7a4bc4365b6bcc090e0f13ddd54b94d68366cf58c2ab902a9 +size 220328100 diff --git a/raw_meta_Arts_Crafts_and_Sewing/full-00001-of-00004.parquet b/raw_meta_Arts_Crafts_and_Sewing/full-00001-of-00004.parquet new file mode 100644 index 0000000000000000000000000000000000000000..aaaee98ec5dc7869acf86cb96fa014054d1366b7 --- /dev/null +++ b/raw_meta_Arts_Crafts_and_Sewing/full-00001-of-00004.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c0444ab00fc93eebc5e369556e18a9795305aef04f20a6ba3cafd730c10d013 +size 208969430 diff --git a/raw_meta_Arts_Crafts_and_Sewing/full-00002-of-00004.parquet b/raw_meta_Arts_Crafts_and_Sewing/full-00002-of-00004.parquet new file mode 100644 index 0000000000000000000000000000000000000000..a6793e8b8ebea389e94c002248eabd0c009322ab --- /dev/null +++ b/raw_meta_Arts_Crafts_and_Sewing/full-00002-of-00004.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fadd08153ac09209e83590407e9fe024a2e1962fb73fb848e697b2b88665ea6d +size 198197529 diff --git a/raw_meta_Arts_Crafts_and_Sewing/full-00003-of-00004.parquet b/raw_meta_Arts_Crafts_and_Sewing/full-00003-of-00004.parquet new file mode 100644 index 0000000000000000000000000000000000000000..baaf6e9df61ec8214d7273d8fe3ccab061ee10ed --- /dev/null +++ b/raw_meta_Arts_Crafts_and_Sewing/full-00003-of-00004.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc003ffdecfb3efc1b4e41fb96908370523bcdac1dc4c1862772f79484dd24a8 +size 179216111 diff --git a/raw_meta_Cell_Phones_and_Accessories/full-00000-of-00007.parquet b/raw_meta_Cell_Phones_and_Accessories/full-00000-of-00007.parquet new file mode 100644 index 0000000000000000000000000000000000000000..aa951f34d726f20a139a51262b88f87b337c2602 --- /dev/null +++ b/raw_meta_Cell_Phones_and_Accessories/full-00000-of-00007.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cddd78045c58ed09f89920d4c067a509ece33e62114b33f3638d5896d8bff7d7 +size 205041738 diff --git a/raw_meta_Cell_Phones_and_Accessories/full-00001-of-00007.parquet b/raw_meta_Cell_Phones_and_Accessories/full-00001-of-00007.parquet new file mode 100644 index 0000000000000000000000000000000000000000..736f9d2fe898432fb2f4012bad6b441ab70a64c1 --- /dev/null +++ b/raw_meta_Cell_Phones_and_Accessories/full-00001-of-00007.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1b7043ba09f34fc081818809eb40bb24730107576cf9a32eb358ff8585d132e +size 193263612 diff --git a/raw_meta_Cell_Phones_and_Accessories/full-00002-of-00007.parquet b/raw_meta_Cell_Phones_and_Accessories/full-00002-of-00007.parquet new file mode 100644 index 0000000000000000000000000000000000000000..f4d73d73093775dd5e50e9eeae4dc2c4aa66cf3e --- /dev/null +++ b/raw_meta_Cell_Phones_and_Accessories/full-00002-of-00007.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:429c9ccfbc71b896784a6cb2867a42f5e19472e9dc74086539bd12d56cad54d0 +size 186934653 diff --git a/raw_meta_Cell_Phones_and_Accessories/full-00003-of-00007.parquet b/raw_meta_Cell_Phones_and_Accessories/full-00003-of-00007.parquet new file mode 100644 index 0000000000000000000000000000000000000000..354ba0dba79811bf8834984fc492f02cd4837b53 --- /dev/null +++ b/raw_meta_Cell_Phones_and_Accessories/full-00003-of-00007.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:543632919b2d4063589ef06353d657c75129e831b837231081e39da39a319d0f +size 178113001 diff --git a/raw_meta_Cell_Phones_and_Accessories/full-00004-of-00007.parquet b/raw_meta_Cell_Phones_and_Accessories/full-00004-of-00007.parquet new file mode 100644 index 0000000000000000000000000000000000000000..0bfc18427282209fbb1621e90454f527641ad6e6 --- /dev/null +++ b/raw_meta_Cell_Phones_and_Accessories/full-00004-of-00007.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5464a480cb241a71ea9dcbbb2969017af4e2d632538005ad2561b1a476eb9b4f +size 174751479 diff --git a/raw_meta_Cell_Phones_and_Accessories/full-00005-of-00007.parquet b/raw_meta_Cell_Phones_and_Accessories/full-00005-of-00007.parquet new file mode 100644 index 0000000000000000000000000000000000000000..892d682f2665ab1b0f3fd899c77dc09e4c5caa32 --- /dev/null +++ b/raw_meta_Cell_Phones_and_Accessories/full-00005-of-00007.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b25ce73611ee04b8627527ae705e9b9692c685328e43612a0a97350115c1ec6a +size 164701086 diff --git a/raw_meta_Cell_Phones_and_Accessories/full-00006-of-00007.parquet b/raw_meta_Cell_Phones_and_Accessories/full-00006-of-00007.parquet new file mode 100644 index 0000000000000000000000000000000000000000..674b095dc813660ba616a7489fbc09df8436dfe4 --- /dev/null +++ b/raw_meta_Cell_Phones_and_Accessories/full-00006-of-00007.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70aa3043745515447be2298588415026b12119014f22ca205e0df3e828bc2c81 +size 159266900 diff --git a/raw_meta_Electronics/full-00000-of-00010.parquet b/raw_meta_Electronics/full-00000-of-00010.parquet new file mode 100644 index 0000000000000000000000000000000000000000..6552c3539922a2d72fbeff189bbc175a721fca8f --- /dev/null +++ b/raw_meta_Electronics/full-00000-of-00010.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:116fe3967889da3d2fd1f5785f46532955d7c952649aa8eebf6eb6434bb9db16 +size 219918692 diff --git a/raw_meta_Electronics/full-00001-of-00010.parquet b/raw_meta_Electronics/full-00001-of-00010.parquet new file mode 100644 index 0000000000000000000000000000000000000000..1a6621002cf276837d58bf0df70b0ef83eb4b4f3 --- /dev/null +++ b/raw_meta_Electronics/full-00001-of-00010.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b32782313769ddc64b8b959aa6b60be520c09ef3f4485917dec0b98ed0d7ab7 +size 214096370 diff --git a/raw_meta_Electronics/full-00002-of-00010.parquet b/raw_meta_Electronics/full-00002-of-00010.parquet new file mode 100644 index 0000000000000000000000000000000000000000..cf359556789f8c5325ad6c19390c24f6aa1a9e5b --- /dev/null +++ b/raw_meta_Electronics/full-00002-of-00010.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2d3ca9f83a986a25fa66c8c66812daeb0e5ea15701fbd77bcbc2939b197f934 +size 209747858 diff --git a/raw_meta_Electronics/full-00003-of-00010.parquet b/raw_meta_Electronics/full-00003-of-00010.parquet new file mode 100644 index 0000000000000000000000000000000000000000..969f8f7d790aeaae3ff057da1294c4f9eefae7c2 --- /dev/null +++ b/raw_meta_Electronics/full-00003-of-00010.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c61d2128abd3420c3f95ec2b55ebc13dbad6b5e5953d40fdfa485a45e21a648f +size 206564228 diff --git a/raw_meta_Electronics/full-00004-of-00010.parquet b/raw_meta_Electronics/full-00004-of-00010.parquet new file mode 100644 index 0000000000000000000000000000000000000000..5ef1655a7d299b1f2f62e6b3cffcc40a65e663e2 --- /dev/null +++ b/raw_meta_Electronics/full-00004-of-00010.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:254ce8d4fb835a4e1ff62a2c8e421d3c2cb08490ba2c4b39eb17fb81368ec076 +size 202300192 diff --git a/raw_meta_Electronics/full-00005-of-00010.parquet b/raw_meta_Electronics/full-00005-of-00010.parquet new file mode 100644 index 0000000000000000000000000000000000000000..07cd0fdb747dfca29109d42ff4499155e8755147 --- /dev/null +++ b/raw_meta_Electronics/full-00005-of-00010.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:76d7a5d65a3128684a50d9b2d001134914554a4412ee94924d7ce11335fa805b +size 192931460 diff --git a/raw_meta_Electronics/full-00006-of-00010.parquet b/raw_meta_Electronics/full-00006-of-00010.parquet new file mode 100644 index 0000000000000000000000000000000000000000..3b0ef95a2da42d1469f4d5f940b5c4169164e380 --- /dev/null +++ b/raw_meta_Electronics/full-00006-of-00010.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c2d6fa3517cf377449f5ba34114b019eee6377deb7f5b9870bf0576e36199bb +size 191760251 diff --git a/raw_meta_Electronics/full-00007-of-00010.parquet b/raw_meta_Electronics/full-00007-of-00010.parquet new file mode 100644 index 0000000000000000000000000000000000000000..8914058feb043186a0d150e2365224e7d6a1c5c6 --- /dev/null +++ b/raw_meta_Electronics/full-00007-of-00010.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6b97eaaa3579712b961063ed4de16042ea3d49654b9e448947f8a406487eba9 +size 183440054 diff --git a/raw_meta_Electronics/full-00008-of-00010.parquet b/raw_meta_Electronics/full-00008-of-00010.parquet new file mode 100644 index 0000000000000000000000000000000000000000..208f462183c7b565547353233c4e57bed7f94bf1 --- /dev/null +++ b/raw_meta_Electronics/full-00008-of-00010.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d71b84f1ab378b432213c29cc460d134bb0d0f35bc72540b9b8a0611e2ebf28 +size 170295146 diff --git a/raw_meta_Electronics/full-00009-of-00010.parquet b/raw_meta_Electronics/full-00009-of-00010.parquet new file mode 100644 index 0000000000000000000000000000000000000000..8781b1d4e393a73ee6a5ae535992eb83714a8306 --- /dev/null +++ b/raw_meta_Electronics/full-00009-of-00010.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9676263126312281e7fda20acb09468d3bfed9cdec9515332a17db7216b0d48b +size 163955464 diff --git a/raw_meta_Gift_Cards/full-00000-of-00001.parquet b/raw_meta_Gift_Cards/full-00000-of-00001.parquet new file mode 100644 index 0000000000000000000000000000000000000000..2bb3d63eb2ec95a193c61278b7cbe6eabcb52ef4 --- /dev/null +++ b/raw_meta_Gift_Cards/full-00000-of-00001.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a321bb58f9daa840eb76257282bf5ea4ce33e6e3e7f8539bee47fe75aa52444 +size 401887 diff --git a/raw_meta_Handmade_Products/full-00000-of-00001.parquet b/raw_meta_Handmade_Products/full-00000-of-00001.parquet new file mode 100644 index 0000000000000000000000000000000000000000..067da4dd12fe21a2d10264b3331f9c4ddd4a477e --- /dev/null +++ b/raw_meta_Handmade_Products/full-00000-of-00001.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a3cbc7810c8bd98c922ff129ef576391d71c2bbb9adc31494608d1638b515a7 +size 132049123 diff --git a/raw_meta_Industrial_and_Scientific/full-00000-of-00002.parquet b/raw_meta_Industrial_and_Scientific/full-00000-of-00002.parquet new file mode 100644 index 0000000000000000000000000000000000000000..d5dd0a9b31a25c90ccb8eefc5438e3184d0b3b58 --- /dev/null +++ b/raw_meta_Industrial_and_Scientific/full-00000-of-00002.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e1e0e4c88e2700e47637636332b8e72002b432ee633a6abb156e40afe43c40a +size 227971433 diff --git a/raw_meta_Industrial_and_Scientific/full-00001-of-00002.parquet b/raw_meta_Industrial_and_Scientific/full-00001-of-00002.parquet new file mode 100644 index 0000000000000000000000000000000000000000..6c663d8bad36062c5efd1dc6db6634153c44ca57 --- /dev/null +++ b/raw_meta_Industrial_and_Scientific/full-00001-of-00002.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a25042623ed3b79dd64863611c5cbf0f1733a78a449dddf378ae00bdb0350ef +size 197036226 diff --git a/raw_meta_Musical_Instruments/full-00000-of-00002.parquet b/raw_meta_Musical_Instruments/full-00000-of-00002.parquet new file mode 100644 index 0000000000000000000000000000000000000000..d86861fa0eff3c5b1040d4166764efdff38b9e7e --- /dev/null +++ b/raw_meta_Musical_Instruments/full-00000-of-00002.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:867567b573c4dc2860d476d0ac2de30bf9d4b3f77ae18e925d551d8d2170db6d +size 123655258 diff --git a/raw_meta_Musical_Instruments/full-00001-of-00002.parquet b/raw_meta_Musical_Instruments/full-00001-of-00002.parquet new file mode 100644 index 0000000000000000000000000000000000000000..e066a650b13612ce60d5a006deb73308583dcfd6 --- /dev/null +++ b/raw_meta_Musical_Instruments/full-00001-of-00002.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d9bf76dd54000c544d81939c1ba7a788c6553ae32745066a8dad668b75690544 +size 105978375 diff --git a/raw_meta_Toys_and_Games/full-00000-of-00005.parquet b/raw_meta_Toys_and_Games/full-00000-of-00005.parquet new file mode 100644 index 0000000000000000000000000000000000000000..527b3f42ff332eeadd542e040854b30a6e9e6588 --- /dev/null +++ b/raw_meta_Toys_and_Games/full-00000-of-00005.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de03dc00dd34e5f3a37d9fcb85c16d3352d768d88d3b25df655723596e697d08 +size 218253388 diff --git a/raw_meta_Toys_and_Games/full-00001-of-00005.parquet b/raw_meta_Toys_and_Games/full-00001-of-00005.parquet new file mode 100644 index 0000000000000000000000000000000000000000..8ebc0aced8bb26b84639e8fdee26951036280f19 --- /dev/null +++ b/raw_meta_Toys_and_Games/full-00001-of-00005.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fbb68c7938ee7cd233755e96b65735fceff5ac52c00e28923f751336c9aa2237 +size 209914262 diff --git a/raw_meta_Toys_and_Games/full-00002-of-00005.parquet b/raw_meta_Toys_and_Games/full-00002-of-00005.parquet new file mode 100644 index 0000000000000000000000000000000000000000..1609b694df9d11fcb8439e5d06e6a03bbf991b43 --- /dev/null +++ b/raw_meta_Toys_and_Games/full-00002-of-00005.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e6b616e21b127deabe9c53f01129cf4213dd7a9161dd45d80392250b4f661ff4 +size 199494366 diff --git a/raw_meta_Toys_and_Games/full-00003-of-00005.parquet b/raw_meta_Toys_and_Games/full-00003-of-00005.parquet new file mode 100644 index 0000000000000000000000000000000000000000..282e7adad8d389baa3902131279435b3ad4c1926 --- /dev/null +++ b/raw_meta_Toys_and_Games/full-00003-of-00005.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5afbcb1084071ccea033960236131feac73cd9f1771990dde13e53b34447a460 +size 187869599 diff --git a/raw_meta_Toys_and_Games/full-00004-of-00005.parquet b/raw_meta_Toys_and_Games/full-00004-of-00005.parquet new file mode 100644 index 0000000000000000000000000000000000000000..7e8cbb2b7f0149b88967e131238c476bad879673 --- /dev/null +++ b/raw_meta_Toys_and_Games/full-00004-of-00005.parquet @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1beb755c24eb9b33505b69924809d1290d824ba1e053d7b559b3519faa4bb668 +size 157135401