├── .gitignore ├── LICENSE ├── README.md ├── config.yaml ├── image ├── dcg-all.png ├── dcg-rare.png ├── map-all.png ├── map-rare.png ├── recall-all.png └── recall-rare.png ├── logs ├── crmf │ └── tuning │ │ └── best_params.json ├── expomf │ └── tuning │ │ └── best_params.json └── wmf │ └── tuning │ └── best_params.json ├── requirements.txt └── src ├── __init__.py ├── data └── preprocessor.py ├── evaluate ├── evaluator.py └── metrics.py ├── main.py ├── models ├── expomf.py ├── rec_eval.py └── recommenders.py ├── trainer.py └── visualize.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usaito/unbiased-implicit-rec-real/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usaito/unbiased-implicit-rec-real/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usaito/unbiased-implicit-rec-real/HEAD/README.md -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usaito/unbiased-implicit-rec-real/HEAD/config.yaml -------------------------------------------------------------------------------- /image/dcg-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usaito/unbiased-implicit-rec-real/HEAD/image/dcg-all.png -------------------------------------------------------------------------------- /image/dcg-rare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usaito/unbiased-implicit-rec-real/HEAD/image/dcg-rare.png -------------------------------------------------------------------------------- /image/map-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usaito/unbiased-implicit-rec-real/HEAD/image/map-all.png -------------------------------------------------------------------------------- /image/map-rare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usaito/unbiased-implicit-rec-real/HEAD/image/map-rare.png -------------------------------------------------------------------------------- /image/recall-all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usaito/unbiased-implicit-rec-real/HEAD/image/recall-all.png -------------------------------------------------------------------------------- /image/recall-rare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usaito/unbiased-implicit-rec-real/HEAD/image/recall-rare.png -------------------------------------------------------------------------------- /logs/crmf/tuning/best_params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usaito/unbiased-implicit-rec-real/HEAD/logs/crmf/tuning/best_params.json -------------------------------------------------------------------------------- /logs/expomf/tuning/best_params.json: -------------------------------------------------------------------------------- 1 | "{\"dim\": 200.0}" -------------------------------------------------------------------------------- /logs/wmf/tuning/best_params.json: -------------------------------------------------------------------------------- 1 | "{\"dim\": 30.0, \"weight\": 0.977252357949727}" -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usaito/unbiased-implicit-rec-real/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/data/preprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usaito/unbiased-implicit-rec-real/HEAD/src/data/preprocessor.py -------------------------------------------------------------------------------- /src/evaluate/evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usaito/unbiased-implicit-rec-real/HEAD/src/evaluate/evaluator.py -------------------------------------------------------------------------------- /src/evaluate/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usaito/unbiased-implicit-rec-real/HEAD/src/evaluate/metrics.py -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usaito/unbiased-implicit-rec-real/HEAD/src/main.py -------------------------------------------------------------------------------- /src/models/expomf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usaito/unbiased-implicit-rec-real/HEAD/src/models/expomf.py -------------------------------------------------------------------------------- /src/models/rec_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usaito/unbiased-implicit-rec-real/HEAD/src/models/rec_eval.py -------------------------------------------------------------------------------- /src/models/recommenders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usaito/unbiased-implicit-rec-real/HEAD/src/models/recommenders.py -------------------------------------------------------------------------------- /src/trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usaito/unbiased-implicit-rec-real/HEAD/src/trainer.py -------------------------------------------------------------------------------- /src/visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/usaito/unbiased-implicit-rec-real/HEAD/src/visualize.py --------------------------------------------------------------------------------