├── .gitignore ├── configs ├── default.json ├── gentest.json ├── gentest_snr-2.json ├── gentest_snr-4.json ├── gentest_snr-6.json ├── gentest_snr0.json ├── gentest_snr2.json ├── gentest_snr4.json ├── gentest_snr6.json ├── gentest_snr8.json ├── ir_no.json ├── ir_no_snr-10_10.json ├── ir_pad1s.json ├── ir_pad1s_snr-10_10.json ├── n640d64.json ├── noise_no.json ├── noise_snr-10_10.json ├── noise_snr-5_10.json ├── seg.json ├── shuffle_1.json ├── shuffle_10.json ├── shuffle_100.json ├── shuffle_1000.json ├── snr.json ├── timeshift_250ms.json └── timeshift_no.json ├── cpp ├── faisscputest.cpp └── seqscore.cpp ├── cppmatcher.py ├── database.py ├── datautil ├── __init__.py ├── audio.py ├── dataset.py ├── dataset_v2.py ├── ir.py ├── melspec.py ├── mock_data.py ├── musicdata.py ├── noise.py ├── preprocess.py └── specaug.py ├── denoise └── createdataset.py ├── ensemble ├── drawheatmap.py ├── drawheatmap2.py ├── extractscore.py ├── lmscore.py ├── svmdraw.py ├── svmheatmap.py ├── svmheatmap2.py ├── svmtrain.py └── svmval.py ├── extractemb.py ├── genall.sh ├── genquery.py ├── genquery_naf.py ├── lists └── readme.md ├── matchemb.py ├── matcher.py ├── matchfromgt.py ├── model.py ├── preview.py ├── readme.md ├── rebuild.py ├── simpleutils.py ├── testall.sh ├── thesis.pdf ├── tools ├── accuracy.py ├── audioset.py ├── audioset2.py ├── convert_naf_to_pfann.py ├── cosinedecay.py ├── csv2txt.py ├── filterduration.py ├── fit.py ├── fma_full.py ├── fma_large.py ├── listaudio.py ├── mirexacc.py ├── stat.py ├── traintestsplit.py └── wham.py └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/.gitignore -------------------------------------------------------------------------------- /configs/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/configs/default.json -------------------------------------------------------------------------------- /configs/gentest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/configs/gentest.json -------------------------------------------------------------------------------- /configs/gentest_snr-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/configs/gentest_snr-2.json -------------------------------------------------------------------------------- /configs/gentest_snr-4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/configs/gentest_snr-4.json -------------------------------------------------------------------------------- /configs/gentest_snr-6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/configs/gentest_snr-6.json -------------------------------------------------------------------------------- /configs/gentest_snr0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/configs/gentest_snr0.json -------------------------------------------------------------------------------- /configs/gentest_snr2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/configs/gentest_snr2.json -------------------------------------------------------------------------------- /configs/gentest_snr4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/configs/gentest_snr4.json -------------------------------------------------------------------------------- /configs/gentest_snr6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/configs/gentest_snr6.json -------------------------------------------------------------------------------- /configs/gentest_snr8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/configs/gentest_snr8.json -------------------------------------------------------------------------------- /configs/ir_no.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/configs/ir_no.json -------------------------------------------------------------------------------- /configs/ir_no_snr-10_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/configs/ir_no_snr-10_10.json -------------------------------------------------------------------------------- /configs/ir_pad1s.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/configs/ir_pad1s.json -------------------------------------------------------------------------------- /configs/ir_pad1s_snr-10_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/configs/ir_pad1s_snr-10_10.json -------------------------------------------------------------------------------- /configs/n640d64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/configs/n640d64.json -------------------------------------------------------------------------------- /configs/noise_no.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/configs/noise_no.json -------------------------------------------------------------------------------- /configs/noise_snr-10_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/configs/noise_snr-10_10.json -------------------------------------------------------------------------------- /configs/noise_snr-5_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/configs/noise_snr-5_10.json -------------------------------------------------------------------------------- /configs/seg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/configs/seg.json -------------------------------------------------------------------------------- /configs/shuffle_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/configs/shuffle_1.json -------------------------------------------------------------------------------- /configs/shuffle_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/configs/shuffle_10.json -------------------------------------------------------------------------------- /configs/shuffle_100.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/configs/shuffle_100.json -------------------------------------------------------------------------------- /configs/shuffle_1000.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/configs/shuffle_1000.json -------------------------------------------------------------------------------- /configs/snr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/configs/snr.json -------------------------------------------------------------------------------- /configs/timeshift_250ms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/configs/timeshift_250ms.json -------------------------------------------------------------------------------- /configs/timeshift_no.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/configs/timeshift_no.json -------------------------------------------------------------------------------- /cpp/faisscputest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/cpp/faisscputest.cpp -------------------------------------------------------------------------------- /cpp/seqscore.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/cpp/seqscore.cpp -------------------------------------------------------------------------------- /cppmatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/cppmatcher.py -------------------------------------------------------------------------------- /database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/database.py -------------------------------------------------------------------------------- /datautil/__init__.py: -------------------------------------------------------------------------------- 1 | """HELP ME!""" -------------------------------------------------------------------------------- /datautil/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/datautil/audio.py -------------------------------------------------------------------------------- /datautil/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/datautil/dataset.py -------------------------------------------------------------------------------- /datautil/dataset_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/datautil/dataset_v2.py -------------------------------------------------------------------------------- /datautil/ir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/datautil/ir.py -------------------------------------------------------------------------------- /datautil/melspec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/datautil/melspec.py -------------------------------------------------------------------------------- /datautil/mock_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/datautil/mock_data.py -------------------------------------------------------------------------------- /datautil/musicdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/datautil/musicdata.py -------------------------------------------------------------------------------- /datautil/noise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/datautil/noise.py -------------------------------------------------------------------------------- /datautil/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/datautil/preprocess.py -------------------------------------------------------------------------------- /datautil/specaug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/datautil/specaug.py -------------------------------------------------------------------------------- /denoise/createdataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/denoise/createdataset.py -------------------------------------------------------------------------------- /ensemble/drawheatmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/ensemble/drawheatmap.py -------------------------------------------------------------------------------- /ensemble/drawheatmap2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/ensemble/drawheatmap2.py -------------------------------------------------------------------------------- /ensemble/extractscore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/ensemble/extractscore.py -------------------------------------------------------------------------------- /ensemble/lmscore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/ensemble/lmscore.py -------------------------------------------------------------------------------- /ensemble/svmdraw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/ensemble/svmdraw.py -------------------------------------------------------------------------------- /ensemble/svmheatmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/ensemble/svmheatmap.py -------------------------------------------------------------------------------- /ensemble/svmheatmap2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/ensemble/svmheatmap2.py -------------------------------------------------------------------------------- /ensemble/svmtrain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/ensemble/svmtrain.py -------------------------------------------------------------------------------- /ensemble/svmval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/ensemble/svmval.py -------------------------------------------------------------------------------- /extractemb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/extractemb.py -------------------------------------------------------------------------------- /genall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/genall.sh -------------------------------------------------------------------------------- /genquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/genquery.py -------------------------------------------------------------------------------- /genquery_naf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/genquery_naf.py -------------------------------------------------------------------------------- /lists/readme.md: -------------------------------------------------------------------------------- 1 | dataset file lists are stored here 2 | -------------------------------------------------------------------------------- /matchemb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/matchemb.py -------------------------------------------------------------------------------- /matcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/matcher.py -------------------------------------------------------------------------------- /matchfromgt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/matchfromgt.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/model.py -------------------------------------------------------------------------------- /preview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/preview.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/readme.md -------------------------------------------------------------------------------- /rebuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/rebuild.py -------------------------------------------------------------------------------- /simpleutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/simpleutils.py -------------------------------------------------------------------------------- /testall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/testall.sh -------------------------------------------------------------------------------- /thesis.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/thesis.pdf -------------------------------------------------------------------------------- /tools/accuracy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/tools/accuracy.py -------------------------------------------------------------------------------- /tools/audioset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/tools/audioset.py -------------------------------------------------------------------------------- /tools/audioset2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/tools/audioset2.py -------------------------------------------------------------------------------- /tools/convert_naf_to_pfann.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/tools/convert_naf_to_pfann.py -------------------------------------------------------------------------------- /tools/cosinedecay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/tools/cosinedecay.py -------------------------------------------------------------------------------- /tools/csv2txt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/tools/csv2txt.py -------------------------------------------------------------------------------- /tools/filterduration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/tools/filterduration.py -------------------------------------------------------------------------------- /tools/fit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/tools/fit.py -------------------------------------------------------------------------------- /tools/fma_full.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/tools/fma_full.py -------------------------------------------------------------------------------- /tools/fma_large.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/tools/fma_large.py -------------------------------------------------------------------------------- /tools/listaudio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/tools/listaudio.py -------------------------------------------------------------------------------- /tools/mirexacc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/tools/mirexacc.py -------------------------------------------------------------------------------- /tools/stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/tools/stat.py -------------------------------------------------------------------------------- /tools/traintestsplit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/tools/traintestsplit.py -------------------------------------------------------------------------------- /tools/wham.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/tools/wham.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stdio2016/pfann/HEAD/train.py --------------------------------------------------------------------------------