├── .gitignore ├── README.md ├── code ├── check.py ├── data.py ├── main.py ├── rank.ipynb ├── rank_feature.py ├── rank_lgb.py ├── recall.py ├── recall_binetwork.py ├── recall_binetworkGpu.py ├── recall_cold.py ├── recall_cold_gpu.py ├── recall_hot.py ├── recall_hot_improved.py ├── recall_itemcf.py ├── recall_w2v.py ├── test.sh └── utils.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/John-Chen92/tianchi-news-recommendation/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/John-Chen92/tianchi-news-recommendation/HEAD/README.md -------------------------------------------------------------------------------- /code/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/John-Chen92/tianchi-news-recommendation/HEAD/code/check.py -------------------------------------------------------------------------------- /code/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/John-Chen92/tianchi-news-recommendation/HEAD/code/data.py -------------------------------------------------------------------------------- /code/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/John-Chen92/tianchi-news-recommendation/HEAD/code/main.py -------------------------------------------------------------------------------- /code/rank.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/John-Chen92/tianchi-news-recommendation/HEAD/code/rank.ipynb -------------------------------------------------------------------------------- /code/rank_feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/John-Chen92/tianchi-news-recommendation/HEAD/code/rank_feature.py -------------------------------------------------------------------------------- /code/rank_lgb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/John-Chen92/tianchi-news-recommendation/HEAD/code/rank_lgb.py -------------------------------------------------------------------------------- /code/recall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/John-Chen92/tianchi-news-recommendation/HEAD/code/recall.py -------------------------------------------------------------------------------- /code/recall_binetwork.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/John-Chen92/tianchi-news-recommendation/HEAD/code/recall_binetwork.py -------------------------------------------------------------------------------- /code/recall_binetworkGpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/John-Chen92/tianchi-news-recommendation/HEAD/code/recall_binetworkGpu.py -------------------------------------------------------------------------------- /code/recall_cold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/John-Chen92/tianchi-news-recommendation/HEAD/code/recall_cold.py -------------------------------------------------------------------------------- /code/recall_cold_gpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/John-Chen92/tianchi-news-recommendation/HEAD/code/recall_cold_gpu.py -------------------------------------------------------------------------------- /code/recall_hot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/John-Chen92/tianchi-news-recommendation/HEAD/code/recall_hot.py -------------------------------------------------------------------------------- /code/recall_hot_improved.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/John-Chen92/tianchi-news-recommendation/HEAD/code/recall_hot_improved.py -------------------------------------------------------------------------------- /code/recall_itemcf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/John-Chen92/tianchi-news-recommendation/HEAD/code/recall_itemcf.py -------------------------------------------------------------------------------- /code/recall_w2v.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/John-Chen92/tianchi-news-recommendation/HEAD/code/recall_w2v.py -------------------------------------------------------------------------------- /code/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/John-Chen92/tianchi-news-recommendation/HEAD/code/test.sh -------------------------------------------------------------------------------- /code/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/John-Chen92/tianchi-news-recommendation/HEAD/code/utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/John-Chen92/tianchi-news-recommendation/HEAD/requirements.txt --------------------------------------------------------------------------------