├── README.md ├── candidate_tower.py ├── data_prep.py ├── gitignore ├── graphs ├── added_cust_feat.html ├── added_dense_train.html ├── added_dense_train2.html ├── added_embedding.html ├── added_prod_feat.html ├── baseline.html └── baseline_graph.html ├── main.py ├── query_tower.py ├── requirements.txt ├── train_test_split.py ├── two_tower_model.py └── utility.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirajano/two_tower_recommenders/HEAD/README.md -------------------------------------------------------------------------------- /candidate_tower.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirajano/two_tower_recommenders/HEAD/candidate_tower.py -------------------------------------------------------------------------------- /data_prep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirajano/two_tower_recommenders/HEAD/data_prep.py -------------------------------------------------------------------------------- /gitignore: -------------------------------------------------------------------------------- 1 | CSV 2 | -------------------------------------------------------------------------------- /graphs/added_cust_feat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirajano/two_tower_recommenders/HEAD/graphs/added_cust_feat.html -------------------------------------------------------------------------------- /graphs/added_dense_train.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirajano/two_tower_recommenders/HEAD/graphs/added_dense_train.html -------------------------------------------------------------------------------- /graphs/added_dense_train2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirajano/two_tower_recommenders/HEAD/graphs/added_dense_train2.html -------------------------------------------------------------------------------- /graphs/added_embedding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirajano/two_tower_recommenders/HEAD/graphs/added_embedding.html -------------------------------------------------------------------------------- /graphs/added_prod_feat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirajano/two_tower_recommenders/HEAD/graphs/added_prod_feat.html -------------------------------------------------------------------------------- /graphs/baseline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirajano/two_tower_recommenders/HEAD/graphs/baseline.html -------------------------------------------------------------------------------- /graphs/baseline_graph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirajano/two_tower_recommenders/HEAD/graphs/baseline_graph.html -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirajano/two_tower_recommenders/HEAD/main.py -------------------------------------------------------------------------------- /query_tower.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirajano/two_tower_recommenders/HEAD/query_tower.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirajano/two_tower_recommenders/HEAD/requirements.txt -------------------------------------------------------------------------------- /train_test_split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirajano/two_tower_recommenders/HEAD/train_test_split.py -------------------------------------------------------------------------------- /two_tower_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirajano/two_tower_recommenders/HEAD/two_tower_model.py -------------------------------------------------------------------------------- /utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kirajano/two_tower_recommenders/HEAD/utility.py --------------------------------------------------------------------------------