├── .gitignore ├── LICENSE ├── README.md ├── data └── ecomm │ └── OnlineRetail_sessions.pkl ├── notebooks ├── Analyze_HPO_results.ipynb └── Explore_Online_Retail_Dataset.ipynb ├── recsys ├── __init__.py ├── data.py ├── metrics.py ├── models.py └── utils.py ├── requirements.txt ├── requirements3.6.txt ├── scripts ├── baseline_analysis.py ├── setup_ray_cluster.py ├── train_w2v_with_logging.py └── tune_w2v_with_ray.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastforwardlabs/session_based_recommenders/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastforwardlabs/session_based_recommenders/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastforwardlabs/session_based_recommenders/HEAD/README.md -------------------------------------------------------------------------------- /data/ecomm/OnlineRetail_sessions.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastforwardlabs/session_based_recommenders/HEAD/data/ecomm/OnlineRetail_sessions.pkl -------------------------------------------------------------------------------- /notebooks/Analyze_HPO_results.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastforwardlabs/session_based_recommenders/HEAD/notebooks/Analyze_HPO_results.ipynb -------------------------------------------------------------------------------- /notebooks/Explore_Online_Retail_Dataset.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastforwardlabs/session_based_recommenders/HEAD/notebooks/Explore_Online_Retail_Dataset.ipynb -------------------------------------------------------------------------------- /recsys/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /recsys/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastforwardlabs/session_based_recommenders/HEAD/recsys/data.py -------------------------------------------------------------------------------- /recsys/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastforwardlabs/session_based_recommenders/HEAD/recsys/metrics.py -------------------------------------------------------------------------------- /recsys/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastforwardlabs/session_based_recommenders/HEAD/recsys/models.py -------------------------------------------------------------------------------- /recsys/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastforwardlabs/session_based_recommenders/HEAD/recsys/utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastforwardlabs/session_based_recommenders/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements3.6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastforwardlabs/session_based_recommenders/HEAD/requirements3.6.txt -------------------------------------------------------------------------------- /scripts/baseline_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastforwardlabs/session_based_recommenders/HEAD/scripts/baseline_analysis.py -------------------------------------------------------------------------------- /scripts/setup_ray_cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastforwardlabs/session_based_recommenders/HEAD/scripts/setup_ray_cluster.py -------------------------------------------------------------------------------- /scripts/train_w2v_with_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastforwardlabs/session_based_recommenders/HEAD/scripts/train_w2v_with_logging.py -------------------------------------------------------------------------------- /scripts/tune_w2v_with_ray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastforwardlabs/session_based_recommenders/HEAD/scripts/tune_w2v_with_ray.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fastforwardlabs/session_based_recommenders/HEAD/setup.py --------------------------------------------------------------------------------