├── .gitignore ├── LICENSE ├── README.md ├── sandbox ├── dummy_baseline.ipynb ├── implicit_baseline.ipynb ├── pytorch_pairwise.ipynb └── pytorch_predictor_demo.ipynb ├── src ├── __init__.py ├── config.py ├── export_embeddings_artifacts.py ├── item_to_item_predictor.py ├── nn_models.py ├── purchases_to_jrows.py ├── train_i2i_model.py ├── train_nn_embeddings.py ├── train_valid_split.py └── utils.py └── submit ├── README.md ├── custom_docker ├── Dockerfile └── README.md ├── data └── check_queries.tsv ├── replay_baseline ├── README.md ├── metadata.json └── server.py ├── run_queries.py └── solution ├── assets ├── model.pkl └── products.csv ├── metadata.json ├── server.py └── src /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datagym-ru/retailhero-recomender-baseline/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datagym-ru/retailhero-recomender-baseline/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datagym-ru/retailhero-recomender-baseline/HEAD/README.md -------------------------------------------------------------------------------- /sandbox/dummy_baseline.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datagym-ru/retailhero-recomender-baseline/HEAD/sandbox/dummy_baseline.ipynb -------------------------------------------------------------------------------- /sandbox/implicit_baseline.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datagym-ru/retailhero-recomender-baseline/HEAD/sandbox/implicit_baseline.ipynb -------------------------------------------------------------------------------- /sandbox/pytorch_pairwise.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datagym-ru/retailhero-recomender-baseline/HEAD/sandbox/pytorch_pairwise.ipynb -------------------------------------------------------------------------------- /sandbox/pytorch_predictor_demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datagym-ru/retailhero-recomender-baseline/HEAD/sandbox/pytorch_predictor_demo.ipynb -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datagym-ru/retailhero-recomender-baseline/HEAD/src/config.py -------------------------------------------------------------------------------- /src/export_embeddings_artifacts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datagym-ru/retailhero-recomender-baseline/HEAD/src/export_embeddings_artifacts.py -------------------------------------------------------------------------------- /src/item_to_item_predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datagym-ru/retailhero-recomender-baseline/HEAD/src/item_to_item_predictor.py -------------------------------------------------------------------------------- /src/nn_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datagym-ru/retailhero-recomender-baseline/HEAD/src/nn_models.py -------------------------------------------------------------------------------- /src/purchases_to_jrows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datagym-ru/retailhero-recomender-baseline/HEAD/src/purchases_to_jrows.py -------------------------------------------------------------------------------- /src/train_i2i_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datagym-ru/retailhero-recomender-baseline/HEAD/src/train_i2i_model.py -------------------------------------------------------------------------------- /src/train_nn_embeddings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datagym-ru/retailhero-recomender-baseline/HEAD/src/train_nn_embeddings.py -------------------------------------------------------------------------------- /src/train_valid_split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datagym-ru/retailhero-recomender-baseline/HEAD/src/train_valid_split.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datagym-ru/retailhero-recomender-baseline/HEAD/src/utils.py -------------------------------------------------------------------------------- /submit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datagym-ru/retailhero-recomender-baseline/HEAD/submit/README.md -------------------------------------------------------------------------------- /submit/custom_docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datagym-ru/retailhero-recomender-baseline/HEAD/submit/custom_docker/Dockerfile -------------------------------------------------------------------------------- /submit/custom_docker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datagym-ru/retailhero-recomender-baseline/HEAD/submit/custom_docker/README.md -------------------------------------------------------------------------------- /submit/data/check_queries.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datagym-ru/retailhero-recomender-baseline/HEAD/submit/data/check_queries.tsv -------------------------------------------------------------------------------- /submit/replay_baseline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datagym-ru/retailhero-recomender-baseline/HEAD/submit/replay_baseline/README.md -------------------------------------------------------------------------------- /submit/replay_baseline/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datagym-ru/retailhero-recomender-baseline/HEAD/submit/replay_baseline/metadata.json -------------------------------------------------------------------------------- /submit/replay_baseline/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datagym-ru/retailhero-recomender-baseline/HEAD/submit/replay_baseline/server.py -------------------------------------------------------------------------------- /submit/run_queries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datagym-ru/retailhero-recomender-baseline/HEAD/submit/run_queries.py -------------------------------------------------------------------------------- /submit/solution/assets/model.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datagym-ru/retailhero-recomender-baseline/HEAD/submit/solution/assets/model.pkl -------------------------------------------------------------------------------- /submit/solution/assets/products.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datagym-ru/retailhero-recomender-baseline/HEAD/submit/solution/assets/products.csv -------------------------------------------------------------------------------- /submit/solution/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datagym-ru/retailhero-recomender-baseline/HEAD/submit/solution/metadata.json -------------------------------------------------------------------------------- /submit/solution/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/datagym-ru/retailhero-recomender-baseline/HEAD/submit/solution/server.py -------------------------------------------------------------------------------- /submit/solution/src: -------------------------------------------------------------------------------- 1 | ../../src --------------------------------------------------------------------------------