├── .spyproject ├── codestyle.ini ├── encoding.ini ├── vcs.ini └── workspace.ini ├── README.md ├── data ├── playlist.pkl ├── popular.playlist ├── popular_music_suprise_format.txt ├── popular_playlist.pkl └── popular_song.pkl ├── lfm_tensorflow ├── __pycache__ │ └── data_process.cpython-35.pyc ├── data_process.py ├── lfm.py └── train.py ├── model ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-35.pyc │ └── convertor.cpython-35.pyc ├── convertor.py ├── knn_baseline.py └── nmf.py ├── preproccess ├── __init__.py ├── dummper.py ├── parser.py └── processor.py ├── song2vec └── train_song2vec.py └── 数据集 /.spyproject/codestyle.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiejie1993/music_recommendation_2018/HEAD/.spyproject/codestyle.ini -------------------------------------------------------------------------------- /.spyproject/encoding.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiejie1993/music_recommendation_2018/HEAD/.spyproject/encoding.ini -------------------------------------------------------------------------------- /.spyproject/vcs.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiejie1993/music_recommendation_2018/HEAD/.spyproject/vcs.ini -------------------------------------------------------------------------------- /.spyproject/workspace.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiejie1993/music_recommendation_2018/HEAD/.spyproject/workspace.ini -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiejie1993/music_recommendation_2018/HEAD/README.md -------------------------------------------------------------------------------- /data/playlist.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiejie1993/music_recommendation_2018/HEAD/data/playlist.pkl -------------------------------------------------------------------------------- /data/popular.playlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiejie1993/music_recommendation_2018/HEAD/data/popular.playlist -------------------------------------------------------------------------------- /data/popular_music_suprise_format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiejie1993/music_recommendation_2018/HEAD/data/popular_music_suprise_format.txt -------------------------------------------------------------------------------- /data/popular_playlist.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiejie1993/music_recommendation_2018/HEAD/data/popular_playlist.pkl -------------------------------------------------------------------------------- /data/popular_song.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiejie1993/music_recommendation_2018/HEAD/data/popular_song.pkl -------------------------------------------------------------------------------- /lfm_tensorflow/__pycache__/data_process.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiejie1993/music_recommendation_2018/HEAD/lfm_tensorflow/__pycache__/data_process.cpython-35.pyc -------------------------------------------------------------------------------- /lfm_tensorflow/data_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiejie1993/music_recommendation_2018/HEAD/lfm_tensorflow/data_process.py -------------------------------------------------------------------------------- /lfm_tensorflow/lfm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiejie1993/music_recommendation_2018/HEAD/lfm_tensorflow/lfm.py -------------------------------------------------------------------------------- /lfm_tensorflow/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiejie1993/music_recommendation_2018/HEAD/lfm_tensorflow/train.py -------------------------------------------------------------------------------- /model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiejie1993/music_recommendation_2018/HEAD/model/__init__.py -------------------------------------------------------------------------------- /model/__pycache__/__init__.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiejie1993/music_recommendation_2018/HEAD/model/__pycache__/__init__.cpython-35.pyc -------------------------------------------------------------------------------- /model/__pycache__/convertor.cpython-35.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiejie1993/music_recommendation_2018/HEAD/model/__pycache__/convertor.cpython-35.pyc -------------------------------------------------------------------------------- /model/convertor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiejie1993/music_recommendation_2018/HEAD/model/convertor.py -------------------------------------------------------------------------------- /model/knn_baseline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiejie1993/music_recommendation_2018/HEAD/model/knn_baseline.py -------------------------------------------------------------------------------- /model/nmf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiejie1993/music_recommendation_2018/HEAD/model/nmf.py -------------------------------------------------------------------------------- /preproccess/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiejie1993/music_recommendation_2018/HEAD/preproccess/__init__.py -------------------------------------------------------------------------------- /preproccess/dummper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiejie1993/music_recommendation_2018/HEAD/preproccess/dummper.py -------------------------------------------------------------------------------- /preproccess/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiejie1993/music_recommendation_2018/HEAD/preproccess/parser.py -------------------------------------------------------------------------------- /preproccess/processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiejie1993/music_recommendation_2018/HEAD/preproccess/processor.py -------------------------------------------------------------------------------- /song2vec/train_song2vec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiejie1993/music_recommendation_2018/HEAD/song2vec/train_song2vec.py -------------------------------------------------------------------------------- /数据集: -------------------------------------------------------------------------------- 1 | 原始数据集:链接: https://pan.baidu.com/s/1kUVSeqV 密码: 9ge4 2 | 3 | --------------------------------------------------------------------------------