├── README.md ├── assets ├── .DS_Store ├── 1.png ├── 10.png ├── 11.png ├── 12.png ├── 13.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── 6.png ├── 7.png ├── 8.png └── 9.png └── source_code ├── .DS_Store └── server ├── .cache ├── Face_detection_model_improvement(attempt) ├── Testing_ResNet50_as_Base_Model.ipynb └── Trying_to_improve_model_using_L2_regularization.ipynb ├── app ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-37.pyc │ ├── __init__.cpython-38.pyc │ ├── admin.cpython-38.pyc │ ├── apps.cpython-38.pyc │ ├── classifier.cpython-38.pyc │ ├── forms.cpython-38.pyc │ ├── models.cpython-38.pyc │ ├── music_model.cpython-38.pyc │ ├── views.cpython-37.pyc │ └── views.cpython-38.pyc ├── admin.py ├── apps.py ├── classifier.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── __init__.py │ └── __pycache__ │ │ ├── 0001_initial.cpython-38.pyc │ │ └── __init__.cpython-38.pyc ├── models.py ├── music_model.py ├── static │ └── css │ │ └── bootstrap.css ├── templates │ ├── base.html │ ├── index.html │ └── result.html ├── tests.py └── views.py ├── db.sqlite3 ├── manage.py ├── ml ├── Milestone3_Emotion_Classification.ipynb ├── data_moods.csv ├── model.h5 ├── model.json └── music_model.h5 └── server ├── __init__.py ├── __pycache__ ├── __init__.cpython-37.pyc ├── __init__.cpython-38.pyc ├── settings.cpython-37.pyc ├── settings.cpython-38.pyc ├── urls.cpython-37.pyc ├── urls.cpython-38.pyc ├── wsgi.cpython-37.pyc └── wsgi.cpython-38.pyc ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyishengalan/Music-Mood-Lifter-ML/HEAD/README.md -------------------------------------------------------------------------------- /assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyishengalan/Music-Mood-Lifter-ML/HEAD/assets/.DS_Store -------------------------------------------------------------------------------- /assets/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyishengalan/Music-Mood-Lifter-ML/HEAD/assets/1.png -------------------------------------------------------------------------------- /assets/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyishengalan/Music-Mood-Lifter-ML/HEAD/assets/10.png -------------------------------------------------------------------------------- /assets/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyishengalan/Music-Mood-Lifter-ML/HEAD/assets/11.png -------------------------------------------------------------------------------- /assets/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyishengalan/Music-Mood-Lifter-ML/HEAD/assets/12.png -------------------------------------------------------------------------------- /assets/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyishengalan/Music-Mood-Lifter-ML/HEAD/assets/13.png -------------------------------------------------------------------------------- /assets/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyishengalan/Music-Mood-Lifter-ML/HEAD/assets/2.png -------------------------------------------------------------------------------- /assets/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyishengalan/Music-Mood-Lifter-ML/HEAD/assets/3.png -------------------------------------------------------------------------------- /assets/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyishengalan/Music-Mood-Lifter-ML/HEAD/assets/4.png -------------------------------------------------------------------------------- /assets/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyishengalan/Music-Mood-Lifter-ML/HEAD/assets/5.png -------------------------------------------------------------------------------- /assets/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyishengalan/Music-Mood-Lifter-ML/HEAD/assets/6.png -------------------------------------------------------------------------------- /assets/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyishengalan/Music-Mood-Lifter-ML/HEAD/assets/7.png -------------------------------------------------------------------------------- /assets/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyishengalan/Music-Mood-Lifter-ML/HEAD/assets/8.png -------------------------------------------------------------------------------- /assets/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyishengalan/Music-Mood-Lifter-ML/HEAD/assets/9.png -------------------------------------------------------------------------------- /source_code/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyishengalan/Music-Mood-Lifter-ML/HEAD/source_code/.DS_Store -------------------------------------------------------------------------------- /source_code/server/.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyishengalan/Music-Mood-Lifter-ML/HEAD/source_code/server/.cache -------------------------------------------------------------------------------- /source_code/server/Face_detection_model_improvement(attempt)/Testing_ResNet50_as_Base_Model.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyishengalan/Music-Mood-Lifter-ML/HEAD/source_code/server/Face_detection_model_improvement(attempt)/Testing_ResNet50_as_Base_Model.ipynb -------------------------------------------------------------------------------- /source_code/server/Face_detection_model_improvement(attempt)/Trying_to_improve_model_using_L2_regularization.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyishengalan/Music-Mood-Lifter-ML/HEAD/source_code/server/Face_detection_model_improvement(attempt)/Trying_to_improve_model_using_L2_regularization.ipynb -------------------------------------------------------------------------------- /source_code/server/app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source_code/server/app/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyishengalan/Music-Mood-Lifter-ML/HEAD/source_code/server/app/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /source_code/server/app/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyishengalan/Music-Mood-Lifter-ML/HEAD/source_code/server/app/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /source_code/server/app/__pycache__/admin.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyishengalan/Music-Mood-Lifter-ML/HEAD/source_code/server/app/__pycache__/admin.cpython-38.pyc -------------------------------------------------------------------------------- /source_code/server/app/__pycache__/apps.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyishengalan/Music-Mood-Lifter-ML/HEAD/source_code/server/app/__pycache__/apps.cpython-38.pyc -------------------------------------------------------------------------------- /source_code/server/app/__pycache__/classifier.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyishengalan/Music-Mood-Lifter-ML/HEAD/source_code/server/app/__pycache__/classifier.cpython-38.pyc -------------------------------------------------------------------------------- /source_code/server/app/__pycache__/forms.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyishengalan/Music-Mood-Lifter-ML/HEAD/source_code/server/app/__pycache__/forms.cpython-38.pyc -------------------------------------------------------------------------------- /source_code/server/app/__pycache__/models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyishengalan/Music-Mood-Lifter-ML/HEAD/source_code/server/app/__pycache__/models.cpython-38.pyc -------------------------------------------------------------------------------- /source_code/server/app/__pycache__/music_model.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyishengalan/Music-Mood-Lifter-ML/HEAD/source_code/server/app/__pycache__/music_model.cpython-38.pyc -------------------------------------------------------------------------------- /source_code/server/app/__pycache__/views.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyishengalan/Music-Mood-Lifter-ML/HEAD/source_code/server/app/__pycache__/views.cpython-37.pyc -------------------------------------------------------------------------------- /source_code/server/app/__pycache__/views.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyishengalan/Music-Mood-Lifter-ML/HEAD/source_code/server/app/__pycache__/views.cpython-38.pyc -------------------------------------------------------------------------------- /source_code/server/app/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyishengalan/Music-Mood-Lifter-ML/HEAD/source_code/server/app/admin.py -------------------------------------------------------------------------------- /source_code/server/app/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyishengalan/Music-Mood-Lifter-ML/HEAD/source_code/server/app/apps.py -------------------------------------------------------------------------------- /source_code/server/app/classifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyishengalan/Music-Mood-Lifter-ML/HEAD/source_code/server/app/classifier.py -------------------------------------------------------------------------------- /source_code/server/app/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyishengalan/Music-Mood-Lifter-ML/HEAD/source_code/server/app/forms.py -------------------------------------------------------------------------------- /source_code/server/app/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyishengalan/Music-Mood-Lifter-ML/HEAD/source_code/server/app/migrations/0001_initial.py -------------------------------------------------------------------------------- /source_code/server/app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source_code/server/app/migrations/__pycache__/0001_initial.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyishengalan/Music-Mood-Lifter-ML/HEAD/source_code/server/app/migrations/__pycache__/0001_initial.cpython-38.pyc -------------------------------------------------------------------------------- /source_code/server/app/migrations/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyishengalan/Music-Mood-Lifter-ML/HEAD/source_code/server/app/migrations/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /source_code/server/app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyishengalan/Music-Mood-Lifter-ML/HEAD/source_code/server/app/models.py -------------------------------------------------------------------------------- /source_code/server/app/music_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyishengalan/Music-Mood-Lifter-ML/HEAD/source_code/server/app/music_model.py -------------------------------------------------------------------------------- /source_code/server/app/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyishengalan/Music-Mood-Lifter-ML/HEAD/source_code/server/app/static/css/bootstrap.css -------------------------------------------------------------------------------- /source_code/server/app/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyishengalan/Music-Mood-Lifter-ML/HEAD/source_code/server/app/templates/base.html -------------------------------------------------------------------------------- /source_code/server/app/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyishengalan/Music-Mood-Lifter-ML/HEAD/source_code/server/app/templates/index.html -------------------------------------------------------------------------------- /source_code/server/app/templates/result.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyishengalan/Music-Mood-Lifter-ML/HEAD/source_code/server/app/templates/result.html -------------------------------------------------------------------------------- /source_code/server/app/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyishengalan/Music-Mood-Lifter-ML/HEAD/source_code/server/app/tests.py -------------------------------------------------------------------------------- /source_code/server/app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyishengalan/Music-Mood-Lifter-ML/HEAD/source_code/server/app/views.py -------------------------------------------------------------------------------- /source_code/server/db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyishengalan/Music-Mood-Lifter-ML/HEAD/source_code/server/db.sqlite3 -------------------------------------------------------------------------------- /source_code/server/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyishengalan/Music-Mood-Lifter-ML/HEAD/source_code/server/manage.py -------------------------------------------------------------------------------- /source_code/server/ml/Milestone3_Emotion_Classification.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyishengalan/Music-Mood-Lifter-ML/HEAD/source_code/server/ml/Milestone3_Emotion_Classification.ipynb -------------------------------------------------------------------------------- /source_code/server/ml/data_moods.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyishengalan/Music-Mood-Lifter-ML/HEAD/source_code/server/ml/data_moods.csv -------------------------------------------------------------------------------- /source_code/server/ml/model.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyishengalan/Music-Mood-Lifter-ML/HEAD/source_code/server/ml/model.h5 -------------------------------------------------------------------------------- /source_code/server/ml/model.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyishengalan/Music-Mood-Lifter-ML/HEAD/source_code/server/ml/model.json -------------------------------------------------------------------------------- /source_code/server/ml/music_model.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyishengalan/Music-Mood-Lifter-ML/HEAD/source_code/server/ml/music_model.h5 -------------------------------------------------------------------------------- /source_code/server/server/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source_code/server/server/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyishengalan/Music-Mood-Lifter-ML/HEAD/source_code/server/server/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /source_code/server/server/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyishengalan/Music-Mood-Lifter-ML/HEAD/source_code/server/server/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /source_code/server/server/__pycache__/settings.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyishengalan/Music-Mood-Lifter-ML/HEAD/source_code/server/server/__pycache__/settings.cpython-37.pyc -------------------------------------------------------------------------------- /source_code/server/server/__pycache__/settings.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyishengalan/Music-Mood-Lifter-ML/HEAD/source_code/server/server/__pycache__/settings.cpython-38.pyc -------------------------------------------------------------------------------- /source_code/server/server/__pycache__/urls.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyishengalan/Music-Mood-Lifter-ML/HEAD/source_code/server/server/__pycache__/urls.cpython-37.pyc -------------------------------------------------------------------------------- /source_code/server/server/__pycache__/urls.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyishengalan/Music-Mood-Lifter-ML/HEAD/source_code/server/server/__pycache__/urls.cpython-38.pyc -------------------------------------------------------------------------------- /source_code/server/server/__pycache__/wsgi.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyishengalan/Music-Mood-Lifter-ML/HEAD/source_code/server/server/__pycache__/wsgi.cpython-37.pyc -------------------------------------------------------------------------------- /source_code/server/server/__pycache__/wsgi.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyishengalan/Music-Mood-Lifter-ML/HEAD/source_code/server/server/__pycache__/wsgi.cpython-38.pyc -------------------------------------------------------------------------------- /source_code/server/server/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyishengalan/Music-Mood-Lifter-ML/HEAD/source_code/server/server/asgi.py -------------------------------------------------------------------------------- /source_code/server/server/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyishengalan/Music-Mood-Lifter-ML/HEAD/source_code/server/server/settings.py -------------------------------------------------------------------------------- /source_code/server/server/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyishengalan/Music-Mood-Lifter-ML/HEAD/source_code/server/server/urls.py -------------------------------------------------------------------------------- /source_code/server/server/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liuyishengalan/Music-Mood-Lifter-ML/HEAD/source_code/server/server/wsgi.py --------------------------------------------------------------------------------