├── Pre_sequence_Generation.pdf ├── README.md ├── __pycache__ ├── metrics.cpython-36.pyc ├── model.cpython-36.pyc ├── modules.cpython-36.pyc ├── sampler.cpython-36.pyc └── util.cpython-36.pyc ├── aug_data ├── Beauty │ └── lr_0.001_maxlen_100_hsize_128_nblocks_2_drate_0.7_l2_0.0_nheads_4_gen_num_20_M_20.txt └── Cell_Phones_and_Accessories │ └── lr_0.001_maxlen_100_hsize_32_nblocks_2_drate_0.5_l2_0.0_nheads_2_gen_num_20_M_20.txt ├── data ├── Beauty │ ├── imap.json │ ├── test.txt │ ├── test_reverse.txt │ ├── train.txt │ ├── train_reverse.txt │ ├── umap.json │ ├── valid.txt │ └── valid_reverse.txt ├── Cell_Phones_and_Accessories │ ├── imap.json │ ├── test.txt │ ├── test_reverse.txt │ ├── train.txt │ ├── train_reverse.txt │ ├── umap.json │ ├── valid.txt │ └── valid_reverse.txt └── DataProcessing.py ├── main.py ├── metrics.py ├── model.py ├── modules.py ├── requirements.txt ├── reversed_models ├── Beauty_reversed │ ├── lr_0.001_maxlen_100_hsize_128_nblocks_2_drate_0.7_l2_0.0_nheads_4_gen_num_5.ckpt.data-00000-of-00001 │ ├── lr_0.001_maxlen_100_hsize_128_nblocks_2_drate_0.7_l2_0.0_nheads_4_gen_num_5.ckpt.index │ └── lr_0.001_maxlen_100_hsize_128_nblocks_2_drate_0.7_l2_0.0_nheads_4_gen_num_5.ckpt.meta └── Cell_Phones_and_Accessories_reversed │ ├── lr_0.001_maxlen_100_hsize_32_nblocks_2_drate_0.5_l2_0.0_nheads_2_gen_num_5.ckpt.data-00000-of-00001 │ ├── lr_0.001_maxlen_100_hsize_32_nblocks_2_drate_0.5_l2_0.0_nheads_2_gen_num_5.ckpt.index │ └── lr_0.001_maxlen_100_hsize_32_nblocks_2_drate_0.5_l2_0.0_nheads_2_gen_num_5.ckpt.meta ├── sampler.py └── util.py /Pre_sequence_Generation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyGRec/ASReP/HEAD/Pre_sequence_Generation.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyGRec/ASReP/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/metrics.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyGRec/ASReP/HEAD/__pycache__/metrics.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyGRec/ASReP/HEAD/__pycache__/model.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/modules.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyGRec/ASReP/HEAD/__pycache__/modules.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/sampler.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyGRec/ASReP/HEAD/__pycache__/sampler.cpython-36.pyc -------------------------------------------------------------------------------- /__pycache__/util.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyGRec/ASReP/HEAD/__pycache__/util.cpython-36.pyc -------------------------------------------------------------------------------- /aug_data/Beauty/lr_0.001_maxlen_100_hsize_128_nblocks_2_drate_0.7_l2_0.0_nheads_4_gen_num_20_M_20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyGRec/ASReP/HEAD/aug_data/Beauty/lr_0.001_maxlen_100_hsize_128_nblocks_2_drate_0.7_l2_0.0_nheads_4_gen_num_20_M_20.txt -------------------------------------------------------------------------------- /aug_data/Cell_Phones_and_Accessories/lr_0.001_maxlen_100_hsize_32_nblocks_2_drate_0.5_l2_0.0_nheads_2_gen_num_20_M_20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyGRec/ASReP/HEAD/aug_data/Cell_Phones_and_Accessories/lr_0.001_maxlen_100_hsize_32_nblocks_2_drate_0.5_l2_0.0_nheads_2_gen_num_20_M_20.txt -------------------------------------------------------------------------------- /data/Beauty/imap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyGRec/ASReP/HEAD/data/Beauty/imap.json -------------------------------------------------------------------------------- /data/Beauty/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyGRec/ASReP/HEAD/data/Beauty/test.txt -------------------------------------------------------------------------------- /data/Beauty/test_reverse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyGRec/ASReP/HEAD/data/Beauty/test_reverse.txt -------------------------------------------------------------------------------- /data/Beauty/train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyGRec/ASReP/HEAD/data/Beauty/train.txt -------------------------------------------------------------------------------- /data/Beauty/train_reverse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyGRec/ASReP/HEAD/data/Beauty/train_reverse.txt -------------------------------------------------------------------------------- /data/Beauty/umap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyGRec/ASReP/HEAD/data/Beauty/umap.json -------------------------------------------------------------------------------- /data/Beauty/valid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyGRec/ASReP/HEAD/data/Beauty/valid.txt -------------------------------------------------------------------------------- /data/Beauty/valid_reverse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyGRec/ASReP/HEAD/data/Beauty/valid_reverse.txt -------------------------------------------------------------------------------- /data/Cell_Phones_and_Accessories/imap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyGRec/ASReP/HEAD/data/Cell_Phones_and_Accessories/imap.json -------------------------------------------------------------------------------- /data/Cell_Phones_and_Accessories/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyGRec/ASReP/HEAD/data/Cell_Phones_and_Accessories/test.txt -------------------------------------------------------------------------------- /data/Cell_Phones_and_Accessories/test_reverse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyGRec/ASReP/HEAD/data/Cell_Phones_and_Accessories/test_reverse.txt -------------------------------------------------------------------------------- /data/Cell_Phones_and_Accessories/train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyGRec/ASReP/HEAD/data/Cell_Phones_and_Accessories/train.txt -------------------------------------------------------------------------------- /data/Cell_Phones_and_Accessories/train_reverse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyGRec/ASReP/HEAD/data/Cell_Phones_and_Accessories/train_reverse.txt -------------------------------------------------------------------------------- /data/Cell_Phones_and_Accessories/umap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyGRec/ASReP/HEAD/data/Cell_Phones_and_Accessories/umap.json -------------------------------------------------------------------------------- /data/Cell_Phones_and_Accessories/valid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyGRec/ASReP/HEAD/data/Cell_Phones_and_Accessories/valid.txt -------------------------------------------------------------------------------- /data/Cell_Phones_and_Accessories/valid_reverse.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyGRec/ASReP/HEAD/data/Cell_Phones_and_Accessories/valid_reverse.txt -------------------------------------------------------------------------------- /data/DataProcessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyGRec/ASReP/HEAD/data/DataProcessing.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyGRec/ASReP/HEAD/main.py -------------------------------------------------------------------------------- /metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyGRec/ASReP/HEAD/metrics.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyGRec/ASReP/HEAD/model.py -------------------------------------------------------------------------------- /modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyGRec/ASReP/HEAD/modules.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyGRec/ASReP/HEAD/requirements.txt -------------------------------------------------------------------------------- /reversed_models/Beauty_reversed/lr_0.001_maxlen_100_hsize_128_nblocks_2_drate_0.7_l2_0.0_nheads_4_gen_num_5.ckpt.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyGRec/ASReP/HEAD/reversed_models/Beauty_reversed/lr_0.001_maxlen_100_hsize_128_nblocks_2_drate_0.7_l2_0.0_nheads_4_gen_num_5.ckpt.data-00000-of-00001 -------------------------------------------------------------------------------- /reversed_models/Beauty_reversed/lr_0.001_maxlen_100_hsize_128_nblocks_2_drate_0.7_l2_0.0_nheads_4_gen_num_5.ckpt.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyGRec/ASReP/HEAD/reversed_models/Beauty_reversed/lr_0.001_maxlen_100_hsize_128_nblocks_2_drate_0.7_l2_0.0_nheads_4_gen_num_5.ckpt.index -------------------------------------------------------------------------------- /reversed_models/Beauty_reversed/lr_0.001_maxlen_100_hsize_128_nblocks_2_drate_0.7_l2_0.0_nheads_4_gen_num_5.ckpt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyGRec/ASReP/HEAD/reversed_models/Beauty_reversed/lr_0.001_maxlen_100_hsize_128_nblocks_2_drate_0.7_l2_0.0_nheads_4_gen_num_5.ckpt.meta -------------------------------------------------------------------------------- /reversed_models/Cell_Phones_and_Accessories_reversed/lr_0.001_maxlen_100_hsize_32_nblocks_2_drate_0.5_l2_0.0_nheads_2_gen_num_5.ckpt.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyGRec/ASReP/HEAD/reversed_models/Cell_Phones_and_Accessories_reversed/lr_0.001_maxlen_100_hsize_32_nblocks_2_drate_0.5_l2_0.0_nheads_2_gen_num_5.ckpt.data-00000-of-00001 -------------------------------------------------------------------------------- /reversed_models/Cell_Phones_and_Accessories_reversed/lr_0.001_maxlen_100_hsize_32_nblocks_2_drate_0.5_l2_0.0_nheads_2_gen_num_5.ckpt.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyGRec/ASReP/HEAD/reversed_models/Cell_Phones_and_Accessories_reversed/lr_0.001_maxlen_100_hsize_32_nblocks_2_drate_0.5_l2_0.0_nheads_2_gen_num_5.ckpt.index -------------------------------------------------------------------------------- /reversed_models/Cell_Phones_and_Accessories_reversed/lr_0.001_maxlen_100_hsize_32_nblocks_2_drate_0.5_l2_0.0_nheads_2_gen_num_5.ckpt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyGRec/ASReP/HEAD/reversed_models/Cell_Phones_and_Accessories_reversed/lr_0.001_maxlen_100_hsize_32_nblocks_2_drate_0.5_l2_0.0_nheads_2_gen_num_5.ckpt.meta -------------------------------------------------------------------------------- /sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyGRec/ASReP/HEAD/sampler.py -------------------------------------------------------------------------------- /util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DyGRec/ASReP/HEAD/util.py --------------------------------------------------------------------------------