├── .gitignore ├── README.md ├── experiment_results.csv ├── image-1.png ├── image.png ├── main.ipynb ├── output.txt ├── recorded_000010.mp3 ├── recorded_cough_000010.mp3 ├── requirements.txt ├── results.json └── utility.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoktugEk/encrypted-shazam/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoktugEk/encrypted-shazam/HEAD/README.md -------------------------------------------------------------------------------- /experiment_results.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoktugEk/encrypted-shazam/HEAD/experiment_results.csv -------------------------------------------------------------------------------- /image-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoktugEk/encrypted-shazam/HEAD/image-1.png -------------------------------------------------------------------------------- /image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoktugEk/encrypted-shazam/HEAD/image.png -------------------------------------------------------------------------------- /main.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoktugEk/encrypted-shazam/HEAD/main.ipynb -------------------------------------------------------------------------------- /output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoktugEk/encrypted-shazam/HEAD/output.txt -------------------------------------------------------------------------------- /recorded_000010.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoktugEk/encrypted-shazam/HEAD/recorded_000010.mp3 -------------------------------------------------------------------------------- /recorded_cough_000010.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoktugEk/encrypted-shazam/HEAD/recorded_cough_000010.mp3 -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | concrete-python 2 | librosa 3 | numpy 4 | matplotlib 5 | pandas -------------------------------------------------------------------------------- /results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoktugEk/encrypted-shazam/HEAD/results.json -------------------------------------------------------------------------------- /utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GoktugEk/encrypted-shazam/HEAD/utility.py --------------------------------------------------------------------------------