├── .gitignore ├── README.md ├── anaconda_projects └── db │ └── project_filebrowser.db ├── cacheemb_i2i_sim.pkl ├── data_analysis.ipynb ├── data_processing.py ├── main.py ├── models ├── YouTubeDNN_torch.py ├── itemcf_recall.py ├── recall_baseline.py └── usercf_recall.py ├── offline_evaluation_multi.py ├── online.py ├── recall_evaluation.py ├── submission.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theIssacLiu/news_recommender/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theIssacLiu/news_recommender/HEAD/README.md -------------------------------------------------------------------------------- /anaconda_projects/db/project_filebrowser.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theIssacLiu/news_recommender/HEAD/anaconda_projects/db/project_filebrowser.db -------------------------------------------------------------------------------- /cacheemb_i2i_sim.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theIssacLiu/news_recommender/HEAD/cacheemb_i2i_sim.pkl -------------------------------------------------------------------------------- /data_analysis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theIssacLiu/news_recommender/HEAD/data_analysis.ipynb -------------------------------------------------------------------------------- /data_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theIssacLiu/news_recommender/HEAD/data_processing.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theIssacLiu/news_recommender/HEAD/main.py -------------------------------------------------------------------------------- /models/YouTubeDNN_torch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theIssacLiu/news_recommender/HEAD/models/YouTubeDNN_torch.py -------------------------------------------------------------------------------- /models/itemcf_recall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theIssacLiu/news_recommender/HEAD/models/itemcf_recall.py -------------------------------------------------------------------------------- /models/recall_baseline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theIssacLiu/news_recommender/HEAD/models/recall_baseline.py -------------------------------------------------------------------------------- /models/usercf_recall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theIssacLiu/news_recommender/HEAD/models/usercf_recall.py -------------------------------------------------------------------------------- /offline_evaluation_multi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theIssacLiu/news_recommender/HEAD/offline_evaluation_multi.py -------------------------------------------------------------------------------- /online.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theIssacLiu/news_recommender/HEAD/online.py -------------------------------------------------------------------------------- /recall_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theIssacLiu/news_recommender/HEAD/recall_evaluation.py -------------------------------------------------------------------------------- /submission.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theIssacLiu/news_recommender/HEAD/submission.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theIssacLiu/news_recommender/HEAD/utils.py --------------------------------------------------------------------------------