├── .gitignore ├── README.md ├── mmoe-ranker ├── __main__.py ├── basic_ranker.py ├── config.py ├── features.py ├── load_data.py ├── preprocess.py ├── train.py ├── viz.py └── weighted_binary_cross_entropy.py └── two-tower-cg ├── __main__.py ├── basic_2_tower_model.py ├── config.py ├── custom_cross_entropy_loss.py ├── custom_recall.py ├── load_data.py ├── preprocess.py ├── single_tower_model.py └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biarne-a/hm-two-step-reco/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biarne-a/hm-two-step-reco/HEAD/README.md -------------------------------------------------------------------------------- /mmoe-ranker/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biarne-a/hm-two-step-reco/HEAD/mmoe-ranker/__main__.py -------------------------------------------------------------------------------- /mmoe-ranker/basic_ranker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biarne-a/hm-two-step-reco/HEAD/mmoe-ranker/basic_ranker.py -------------------------------------------------------------------------------- /mmoe-ranker/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biarne-a/hm-two-step-reco/HEAD/mmoe-ranker/config.py -------------------------------------------------------------------------------- /mmoe-ranker/features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biarne-a/hm-two-step-reco/HEAD/mmoe-ranker/features.py -------------------------------------------------------------------------------- /mmoe-ranker/load_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biarne-a/hm-two-step-reco/HEAD/mmoe-ranker/load_data.py -------------------------------------------------------------------------------- /mmoe-ranker/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biarne-a/hm-two-step-reco/HEAD/mmoe-ranker/preprocess.py -------------------------------------------------------------------------------- /mmoe-ranker/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biarne-a/hm-two-step-reco/HEAD/mmoe-ranker/train.py -------------------------------------------------------------------------------- /mmoe-ranker/viz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biarne-a/hm-two-step-reco/HEAD/mmoe-ranker/viz.py -------------------------------------------------------------------------------- /mmoe-ranker/weighted_binary_cross_entropy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biarne-a/hm-two-step-reco/HEAD/mmoe-ranker/weighted_binary_cross_entropy.py -------------------------------------------------------------------------------- /two-tower-cg/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biarne-a/hm-two-step-reco/HEAD/two-tower-cg/__main__.py -------------------------------------------------------------------------------- /two-tower-cg/basic_2_tower_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biarne-a/hm-two-step-reco/HEAD/two-tower-cg/basic_2_tower_model.py -------------------------------------------------------------------------------- /two-tower-cg/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biarne-a/hm-two-step-reco/HEAD/two-tower-cg/config.py -------------------------------------------------------------------------------- /two-tower-cg/custom_cross_entropy_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biarne-a/hm-two-step-reco/HEAD/two-tower-cg/custom_cross_entropy_loss.py -------------------------------------------------------------------------------- /two-tower-cg/custom_recall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biarne-a/hm-two-step-reco/HEAD/two-tower-cg/custom_recall.py -------------------------------------------------------------------------------- /two-tower-cg/load_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biarne-a/hm-two-step-reco/HEAD/two-tower-cg/load_data.py -------------------------------------------------------------------------------- /two-tower-cg/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biarne-a/hm-two-step-reco/HEAD/two-tower-cg/preprocess.py -------------------------------------------------------------------------------- /two-tower-cg/single_tower_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biarne-a/hm-two-step-reco/HEAD/two-tower-cg/single_tower_model.py -------------------------------------------------------------------------------- /two-tower-cg/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/biarne-a/hm-two-step-reco/HEAD/two-tower-cg/train.py --------------------------------------------------------------------------------