├── AE_trainer.py ├── LICENSE.txt ├── PointWise_trainer.py ├── README.md ├── __init__.py ├── __pycache__ ├── AE_trainer.cpython-37.pyc ├── PointWise_trainer.cpython-37.pyc └── trainer.cpython-37.pyc ├── data └── coat │ ├── point_0.5 │ ├── item_freq.npy │ ├── pscore.npy │ ├── test.npy │ ├── train.npy │ └── val.npy │ ├── test.ascii │ └── train.ascii ├── evaluate ├── __pycache__ │ ├── evaluator.cpython-37.pyc │ └── metrics.cpython-37.pyc ├── evaluator.py └── metrics.py ├── logs └── coat │ ├── cjmf │ └── results │ │ └── 0406_221046_dim_50_lr_0.005_reg_1e-05_896_random_1.csv │ └── macr │ └── results │ └── 0406_221203_dim_50_lr_0.005_reg_1e-05_1024_random_1.csv ├── main.py ├── models ├── __pycache__ │ ├── cjmf.cpython-37.pyc │ ├── iae.cpython-37.pyc │ ├── proposed.cpython-37.pyc │ ├── recommenders.cpython-37.pyc │ └── uae.cpython-37.pyc ├── cjmf.py ├── iae.py ├── proposed.py ├── recommenders.py └── uae.py ├── requirements.txt ├── trainer.py └── util ├── __pycache__ └── preprocessor.cpython-37.pyc └── preprocessor.py /AE_trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaewoong-Lee/sigir_2022_BISER/HEAD/AE_trainer.py -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaewoong-Lee/sigir_2022_BISER/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /PointWise_trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaewoong-Lee/sigir_2022_BISER/HEAD/PointWise_trainer.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaewoong-Lee/sigir_2022_BISER/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /__pycache__/AE_trainer.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaewoong-Lee/sigir_2022_BISER/HEAD/__pycache__/AE_trainer.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/PointWise_trainer.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaewoong-Lee/sigir_2022_BISER/HEAD/__pycache__/PointWise_trainer.cpython-37.pyc -------------------------------------------------------------------------------- /__pycache__/trainer.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaewoong-Lee/sigir_2022_BISER/HEAD/__pycache__/trainer.cpython-37.pyc -------------------------------------------------------------------------------- /data/coat/point_0.5/item_freq.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaewoong-Lee/sigir_2022_BISER/HEAD/data/coat/point_0.5/item_freq.npy -------------------------------------------------------------------------------- /data/coat/point_0.5/pscore.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaewoong-Lee/sigir_2022_BISER/HEAD/data/coat/point_0.5/pscore.npy -------------------------------------------------------------------------------- /data/coat/point_0.5/test.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaewoong-Lee/sigir_2022_BISER/HEAD/data/coat/point_0.5/test.npy -------------------------------------------------------------------------------- /data/coat/point_0.5/train.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaewoong-Lee/sigir_2022_BISER/HEAD/data/coat/point_0.5/train.npy -------------------------------------------------------------------------------- /data/coat/point_0.5/val.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaewoong-Lee/sigir_2022_BISER/HEAD/data/coat/point_0.5/val.npy -------------------------------------------------------------------------------- /data/coat/test.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaewoong-Lee/sigir_2022_BISER/HEAD/data/coat/test.ascii -------------------------------------------------------------------------------- /data/coat/train.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaewoong-Lee/sigir_2022_BISER/HEAD/data/coat/train.ascii -------------------------------------------------------------------------------- /evaluate/__pycache__/evaluator.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaewoong-Lee/sigir_2022_BISER/HEAD/evaluate/__pycache__/evaluator.cpython-37.pyc -------------------------------------------------------------------------------- /evaluate/__pycache__/metrics.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaewoong-Lee/sigir_2022_BISER/HEAD/evaluate/__pycache__/metrics.cpython-37.pyc -------------------------------------------------------------------------------- /evaluate/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaewoong-Lee/sigir_2022_BISER/HEAD/evaluate/evaluator.py -------------------------------------------------------------------------------- /evaluate/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaewoong-Lee/sigir_2022_BISER/HEAD/evaluate/metrics.py -------------------------------------------------------------------------------- /logs/coat/cjmf/results/0406_221046_dim_50_lr_0.005_reg_1e-05_896_random_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaewoong-Lee/sigir_2022_BISER/HEAD/logs/coat/cjmf/results/0406_221046_dim_50_lr_0.005_reg_1e-05_896_random_1.csv -------------------------------------------------------------------------------- /logs/coat/macr/results/0406_221203_dim_50_lr_0.005_reg_1e-05_1024_random_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaewoong-Lee/sigir_2022_BISER/HEAD/logs/coat/macr/results/0406_221203_dim_50_lr_0.005_reg_1e-05_1024_random_1.csv -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaewoong-Lee/sigir_2022_BISER/HEAD/main.py -------------------------------------------------------------------------------- /models/__pycache__/cjmf.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaewoong-Lee/sigir_2022_BISER/HEAD/models/__pycache__/cjmf.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/iae.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaewoong-Lee/sigir_2022_BISER/HEAD/models/__pycache__/iae.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/proposed.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaewoong-Lee/sigir_2022_BISER/HEAD/models/__pycache__/proposed.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/recommenders.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaewoong-Lee/sigir_2022_BISER/HEAD/models/__pycache__/recommenders.cpython-37.pyc -------------------------------------------------------------------------------- /models/__pycache__/uae.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaewoong-Lee/sigir_2022_BISER/HEAD/models/__pycache__/uae.cpython-37.pyc -------------------------------------------------------------------------------- /models/cjmf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaewoong-Lee/sigir_2022_BISER/HEAD/models/cjmf.py -------------------------------------------------------------------------------- /models/iae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaewoong-Lee/sigir_2022_BISER/HEAD/models/iae.py -------------------------------------------------------------------------------- /models/proposed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaewoong-Lee/sigir_2022_BISER/HEAD/models/proposed.py -------------------------------------------------------------------------------- /models/recommenders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaewoong-Lee/sigir_2022_BISER/HEAD/models/recommenders.py -------------------------------------------------------------------------------- /models/uae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaewoong-Lee/sigir_2022_BISER/HEAD/models/uae.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaewoong-Lee/sigir_2022_BISER/HEAD/requirements.txt -------------------------------------------------------------------------------- /trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaewoong-Lee/sigir_2022_BISER/HEAD/trainer.py -------------------------------------------------------------------------------- /util/__pycache__/preprocessor.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaewoong-Lee/sigir_2022_BISER/HEAD/util/__pycache__/preprocessor.cpython-37.pyc -------------------------------------------------------------------------------- /util/preprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jaewoong-Lee/sigir_2022_BISER/HEAD/util/preprocessor.py --------------------------------------------------------------------------------