├── README.md ├── aws ├── generate_spectrograms.py ├── model_train.py ├── prepare_breakbeat_files.ipynb ├── prepare_dancehall_files.ipynb └── prepare_deep_house_files.ipynb ├── calc_cosine_sim_make_recommendations.ipynb ├── concat_feature_arrays.ipynb ├── create_and_save_feature_vector_model.ipynb ├── create_avg_track_vectors.ipynb ├── create_feature_vectors.ipynb ├── holdout_set_evaluation.ipynb ├── model_classify_genre.py ├── model_data_selection.ipynb ├── music_feature_extractor.hdf5 └── music_genre_classifier.hdf5 /README.md: -------------------------------------------------------------------------------- 1 | # music_recommender 2 | -------------------------------------------------------------------------------- /aws/generate_spectrograms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmurray/music_recommender/HEAD/aws/generate_spectrograms.py -------------------------------------------------------------------------------- /aws/model_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmurray/music_recommender/HEAD/aws/model_train.py -------------------------------------------------------------------------------- /aws/prepare_breakbeat_files.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmurray/music_recommender/HEAD/aws/prepare_breakbeat_files.ipynb -------------------------------------------------------------------------------- /aws/prepare_dancehall_files.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmurray/music_recommender/HEAD/aws/prepare_dancehall_files.ipynb -------------------------------------------------------------------------------- /aws/prepare_deep_house_files.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmurray/music_recommender/HEAD/aws/prepare_deep_house_files.ipynb -------------------------------------------------------------------------------- /calc_cosine_sim_make_recommendations.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmurray/music_recommender/HEAD/calc_cosine_sim_make_recommendations.ipynb -------------------------------------------------------------------------------- /concat_feature_arrays.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmurray/music_recommender/HEAD/concat_feature_arrays.ipynb -------------------------------------------------------------------------------- /create_and_save_feature_vector_model.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmurray/music_recommender/HEAD/create_and_save_feature_vector_model.ipynb -------------------------------------------------------------------------------- /create_avg_track_vectors.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmurray/music_recommender/HEAD/create_avg_track_vectors.ipynb -------------------------------------------------------------------------------- /create_feature_vectors.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmurray/music_recommender/HEAD/create_feature_vectors.ipynb -------------------------------------------------------------------------------- /holdout_set_evaluation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmurray/music_recommender/HEAD/holdout_set_evaluation.ipynb -------------------------------------------------------------------------------- /model_classify_genre.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmurray/music_recommender/HEAD/model_classify_genre.py -------------------------------------------------------------------------------- /model_data_selection.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmurray/music_recommender/HEAD/model_data_selection.ipynb -------------------------------------------------------------------------------- /music_feature_extractor.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmurray/music_recommender/HEAD/music_feature_extractor.hdf5 -------------------------------------------------------------------------------- /music_genre_classifier.hdf5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattmurray/music_recommender/HEAD/music_genre_classifier.hdf5 --------------------------------------------------------------------------------