├── .gitattributes ├── .gitignore ├── README.md ├── archive ├── .ipynb_checkpoints │ └── song-recommender-checkpoint.ipynb ├── feature-engineering.ipynb └── song-recommender.ipynb ├── img ├── favorite.png ├── recommendations.jpg └── spotify-banner.jpeg └── src ├── data-preprocessing.ipynb └── exploratory-data-analysis.ipynb /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isacmlee/song-recommender/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | song-recommender 3 | .ipynb_checkpoints 4 | data -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isacmlee/song-recommender/HEAD/README.md -------------------------------------------------------------------------------- /archive/.ipynb_checkpoints/song-recommender-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isacmlee/song-recommender/HEAD/archive/.ipynb_checkpoints/song-recommender-checkpoint.ipynb -------------------------------------------------------------------------------- /archive/feature-engineering.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isacmlee/song-recommender/HEAD/archive/feature-engineering.ipynb -------------------------------------------------------------------------------- /archive/song-recommender.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isacmlee/song-recommender/HEAD/archive/song-recommender.ipynb -------------------------------------------------------------------------------- /img/favorite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isacmlee/song-recommender/HEAD/img/favorite.png -------------------------------------------------------------------------------- /img/recommendations.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isacmlee/song-recommender/HEAD/img/recommendations.jpg -------------------------------------------------------------------------------- /img/spotify-banner.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isacmlee/song-recommender/HEAD/img/spotify-banner.jpeg -------------------------------------------------------------------------------- /src/data-preprocessing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isacmlee/song-recommender/HEAD/src/data-preprocessing.ipynb -------------------------------------------------------------------------------- /src/exploratory-data-analysis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/isacmlee/song-recommender/HEAD/src/exploratory-data-analysis.ipynb --------------------------------------------------------------------------------