├── .gitattributes ├── README.md ├── downloadAudio.py ├── fileNames.npy ├── logger.py ├── mainGUI.py ├── preProcessData.py ├── preview.png ├── sadSongClassifier ├── testModel.py ├── trainModel.py └── videoLinks.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroAndZero/cry-or-not/HEAD/.gitattributes -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroAndZero/cry-or-not/HEAD/README.md -------------------------------------------------------------------------------- /downloadAudio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroAndZero/cry-or-not/HEAD/downloadAudio.py -------------------------------------------------------------------------------- /fileNames.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroAndZero/cry-or-not/HEAD/fileNames.npy -------------------------------------------------------------------------------- /logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroAndZero/cry-or-not/HEAD/logger.py -------------------------------------------------------------------------------- /mainGUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroAndZero/cry-or-not/HEAD/mainGUI.py -------------------------------------------------------------------------------- /preProcessData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroAndZero/cry-or-not/HEAD/preProcessData.py -------------------------------------------------------------------------------- /preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroAndZero/cry-or-not/HEAD/preview.png -------------------------------------------------------------------------------- /sadSongClassifier: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroAndZero/cry-or-not/HEAD/sadSongClassifier -------------------------------------------------------------------------------- /testModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroAndZero/cry-or-not/HEAD/testModel.py -------------------------------------------------------------------------------- /trainModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroAndZero/cry-or-not/HEAD/trainModel.py -------------------------------------------------------------------------------- /videoLinks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeroAndZero/cry-or-not/HEAD/videoLinks.json --------------------------------------------------------------------------------