├── .gitattributes ├── .gitignore ├── DF ├── Baseline-CQCC-GMM │ ├── matlab │ │ ├── CQCC │ │ ├── CQCC_GMM_ASVspoof_2021_baseline.m │ │ ├── GMM │ │ ├── LICENSE │ │ └── README.md │ └── python │ │ ├── CQCC │ │ ├── README.md │ │ ├── asvspoof2021_baseline.py │ │ ├── gmm.py │ │ └── gmm_scoring_asvspoof21.py ├── Baseline-LFCC-GMM │ ├── matlab │ │ ├── GMM │ │ ├── LFCC │ │ ├── LFCC_GMM_ASVspoof_2021_baseline.m │ │ └── README.md │ └── python │ │ ├── LFCC_pipeline.py │ │ ├── README.md │ │ ├── asvspoof2021_baseline.py │ │ ├── gmm.py │ │ └── gmm_scoring_asvspoof21.py ├── Baseline-LFCC-LCNN │ ├── LICENSE │ ├── README.md │ ├── core_modules │ ├── core_scripts │ ├── env.sh │ ├── env.yml │ ├── project │ │ ├── 00_download.sh │ │ ├── 01_wrapper_eval.sh │ │ ├── 02_toy_example.sh │ │ ├── 99_del.sh │ │ ├── DATA │ │ │ └── .gitkeep │ │ ├── README │ │ ├── baseline_DF │ │ │ ├── 00_train.sh │ │ │ ├── 01_eval.sh │ │ │ ├── 02_eval_alternative.sh │ │ │ ├── __pretrained │ │ │ │ └── .gitkeep │ │ │ ├── config.py │ │ │ ├── config_auto.py │ │ │ ├── main.py │ │ │ └── model.py │ │ └── conda.sh │ └── sandbox └── Baseline-RawNet2 │ ├── LICENSE │ ├── README.md │ ├── core_scripts │ ├── data_utils.py │ ├── main.py │ ├── model.py │ ├── model_config_RawNet.yaml │ └── requirements.txt ├── LA ├── Baseline-CQCC-GMM │ ├── matlab │ │ ├── CQCC │ │ │ ├── .DS_Store │ │ │ ├── CQT_toolbox_2013 │ │ │ │ ├── cqt.m │ │ │ │ ├── cqtCell2Sparse.m │ │ │ │ ├── cqtFillSparse.m │ │ │ │ ├── cqtSparse2Cell.m │ │ │ │ ├── hp.m │ │ │ │ ├── icqt.m │ │ │ │ ├── nsdual.m │ │ │ │ ├── nsgcqwin.m │ │ │ │ ├── nsgtf_real.m │ │ │ │ ├── nsigtf_real.m │ │ │ │ ├── plotnsgtf.m │ │ │ │ └── winfuns.m │ │ │ ├── D18_1000001.wav │ │ │ ├── DEMO.m │ │ │ ├── README.txt │ │ │ └── cqcc.m │ │ ├── CQCC_GMM_ASVspoof_2021_baseline.m │ │ ├── GMM │ │ │ ├── .DS_Store │ │ │ ├── compute_llk.m │ │ │ ├── lgmmprob.m │ │ │ ├── logsumexp.m │ │ │ └── vlfeat │ │ │ │ ├── mexa64 │ │ │ │ ├── libvl.so │ │ │ │ └── vl_gmm.mexa64 │ │ │ │ ├── mexglx │ │ │ │ ├── libvl.so │ │ │ │ └── vl_gmm.mexglx │ │ │ │ ├── mexmaci │ │ │ │ ├── libvl.dylib │ │ │ │ └── vl_gmm.mexmaci │ │ │ │ ├── mexmaci64 │ │ │ │ ├── libvl.dylib │ │ │ │ └── vl_gmm.mexmaci64 │ │ │ │ ├── mexw32 │ │ │ │ ├── msvcr100.dll │ │ │ │ ├── vl.dll │ │ │ │ └── vl_gmm.mexw32 │ │ │ │ └── mexw64 │ │ │ │ ├── msvcr100.dll │ │ │ │ ├── vl.dll │ │ │ │ ├── vl_aib.mexw64 │ │ │ │ ├── vl_aibhist.mexw64 │ │ │ │ ├── vl_alldist.mexw64 │ │ │ │ ├── vl_alldist2.mexw64 │ │ │ │ ├── vl_binsearch.mexw64 │ │ │ │ ├── vl_binsum.mexw64 │ │ │ │ ├── vl_covdet.mexw64 │ │ │ │ ├── vl_cummax.mexw64 │ │ │ │ ├── vl_dsift.mexw64 │ │ │ │ ├── vl_erfill.mexw64 │ │ │ │ ├── vl_fisher.mexw64 │ │ │ │ ├── vl_getpid.mexw64 │ │ │ │ ├── vl_gmm.mexw64 │ │ │ │ ├── vl_hikmeans.mexw64 │ │ │ │ ├── vl_hikmeanspush.mexw64 │ │ │ │ ├── vl_hog.mexw64 │ │ │ │ ├── vl_homkermap.mexw64 │ │ │ │ ├── vl_ihashfind.mexw64 │ │ │ │ ├── vl_ihashsum.mexw64 │ │ │ │ ├── vl_ikmeans.mexw64 │ │ │ │ ├── vl_ikmeanspush.mexw64 │ │ │ │ ├── vl_imdisttf.mexw64 │ │ │ │ ├── vl_imintegral.mexw64 │ │ │ │ ├── vl_imsmooth.mexw64 │ │ │ │ ├── vl_imwbackwardmx.mexw64 │ │ │ │ ├── vl_inthist.mexw64 │ │ │ │ ├── vl_irodr.mexw64 │ │ │ │ ├── vl_kdtreebuild.mexw64 │ │ │ │ ├── vl_kdtreequery.mexw64 │ │ │ │ ├── vl_kmeans.mexw64 │ │ │ │ ├── vl_lbp.mexw64 │ │ │ │ ├── vl_liop.mexw64 │ │ │ │ ├── vl_localmax.mexw64 │ │ │ │ ├── vl_mser.mexw64 │ │ │ │ ├── vl_quickshift.mexw64 │ │ │ │ ├── vl_rodr.mexw64 │ │ │ │ ├── vl_sampleinthist.mexw64 │ │ │ │ ├── vl_sift.mexw64 │ │ │ │ ├── vl_siftdescriptor.mexw64 │ │ │ │ ├── vl_simdctrl.mexw64 │ │ │ │ ├── vl_slic.mexw64 │ │ │ │ ├── vl_svmtrain.mexw64 │ │ │ │ ├── vl_threads.mexw64 │ │ │ │ ├── vl_tpsumx.mexw64 │ │ │ │ ├── vl_twister.mexw64 │ │ │ │ ├── vl_ubcmatch.mexw64 │ │ │ │ ├── vl_version.mexw64 │ │ │ │ └── vl_vlad.mexw64 │ │ ├── LICENSE │ │ └── README.md │ └── python │ │ ├── CQCC │ │ ├── CQT_toolbox_2013 │ │ │ ├── __init__.py │ │ │ ├── cqt.py │ │ │ ├── cqtCell2Sparse.py │ │ │ ├── cqtFillSparse.py │ │ │ ├── cqtSparse2Cell.py │ │ │ ├── hp.py │ │ │ ├── icqt.py │ │ │ ├── nsdual.py │ │ │ ├── nsgcqwin.py │ │ │ ├── nsgtf_real.py │ │ │ ├── nsigtf_real.py │ │ │ └── winfuns.py │ │ ├── README.txt │ │ ├── __init__.py │ │ ├── cqcc.py │ │ ├── cqcc_ori.py │ │ └── demo.py │ │ ├── README.md │ │ ├── asvspoof2021_baseline.py │ │ ├── gmm.py │ │ └── gmm_scoring_asvspoof21.py ├── Baseline-LFCC-GMM │ ├── matlab │ │ ├── GMM │ │ ├── LFCC │ │ │ ├── .DS_Store │ │ │ └── lfcc_bp.m │ │ ├── LFCC_GMM_ASVspoof_2021_baseline.m │ │ ├── LICENSE │ │ └── README.md │ └── python │ │ ├── LFCC_pipeline.py │ │ ├── README.md │ │ ├── asvspoof2021_baseline.py │ │ ├── gmm.py │ │ └── gmm_scoring_asvspoof21.py ├── Baseline-LFCC-LCNN │ ├── LICENSE │ ├── README.md │ ├── core_modules │ │ ├── a_softmax.py │ │ ├── am_softmax.py │ │ ├── grad_rev.py │ │ ├── oc_softmax.py │ │ └── p2sgrad.py │ ├── core_scripts │ │ ├── __init__.py │ │ ├── config_parse │ │ │ ├── __init__.py │ │ │ ├── arg_parse.py │ │ │ └── config_parse.py │ │ ├── data_io │ │ │ ├── __init__.py │ │ │ ├── conf.py │ │ │ ├── customize_collate_fn.py │ │ │ ├── customize_dataset.py │ │ │ ├── customize_sampler.py │ │ │ ├── default_data_io.py │ │ │ ├── io_tools.py │ │ │ ├── seq_info.py │ │ │ ├── text_process │ │ │ │ ├── text_io.py │ │ │ │ ├── tmp.txt │ │ │ │ ├── toolkit_all.py │ │ │ │ └── toolkit_en.py │ │ │ └── wav_tools.py │ │ ├── math_tools │ │ │ ├── __init__.py │ │ │ ├── random_tools.py │ │ │ └── stats.py │ │ ├── nn_manager │ │ │ ├── nn_manager.py │ │ │ ├── nn_manager_GAN.py │ │ │ ├── nn_manager_conf.py │ │ │ └── nn_manager_tools.py │ │ ├── op_manager │ │ │ ├── conf.py │ │ │ ├── lr_scheduler.py │ │ │ ├── op_display_tools.py │ │ │ ├── op_manager.py │ │ │ └── op_process_monitor.py │ │ ├── other_tools │ │ │ ├── __init__.py │ │ │ ├── data_warehouse.py │ │ │ ├── debug.py │ │ │ ├── display.py │ │ │ ├── list_tools.py │ │ │ ├── log_parser.py │ │ │ ├── random_name_mgn.py │ │ │ ├── script_model_para.py │ │ │ └── str_tools.py │ │ └── startup_config.py │ ├── env.sh │ ├── env.yml │ ├── project │ │ ├── 00_download.sh │ │ ├── 01_wrapper_eval.sh │ │ ├── 02_toy_example.sh │ │ ├── 99_del.sh │ │ ├── DATA │ │ │ └── .gitkeep │ │ ├── README │ │ ├── baseline_LA │ │ │ ├── 00_train.sh │ │ │ ├── 01_eval.sh │ │ │ ├── 02_eval_alternative.sh │ │ │ ├── __pretrained │ │ │ │ └── .gitkeep │ │ │ ├── config.py │ │ │ ├── config_auto.py │ │ │ ├── main.py │ │ │ └── model.py │ │ └── conda.sh │ └── sandbox │ │ ├── __init__.py │ │ ├── block_dist.py │ │ ├── block_nn.py │ │ ├── block_nsf.py │ │ ├── block_resnet.py │ │ ├── dist.py │ │ ├── dynamic_prog.py │ │ ├── eval_asvspoof.py │ │ ├── eval_music.py │ │ ├── util_dsp.py │ │ ├── util_frontend.py │ │ └── util_music.py └── Baseline-RawNet2 │ ├── LICENSE │ ├── README.md │ ├── core_scripts │ ├── data_utils.py │ ├── main.py │ ├── model.py │ ├── model_config_RawNet.yaml │ └── requirements.txt ├── PA ├── Baseline-CQCC-GMM │ ├── matlab │ │ ├── CQCC │ │ ├── CQCC_GMM_ASVspoof_2021_baseline.m │ │ ├── GMM │ │ ├── LICENSE │ │ └── README.md │ └── python │ │ ├── CQCC │ │ ├── README.md │ │ ├── asvspoof2021_baseline.py │ │ ├── gmm.py │ │ └── gmm_scoring_asvspoof21.py ├── Baseline-LFCC-GMM │ ├── matlab │ │ ├── GMM │ │ ├── LFCC │ │ ├── LFCC_GMM_ASVspoof_2021_baseline.m │ │ ├── LICENSE │ │ └── README.md │ └── python │ │ ├── LFCC_pipeline.py │ │ ├── README.md │ │ ├── asvspoof2021_baseline.py │ │ ├── gmm.py │ │ └── gmm_scoring_asvspoof21.py ├── Baseline-LFCC-LCNN │ ├── LICENSE │ ├── README.md │ ├── core_modules │ ├── core_scripts │ ├── env.sh │ ├── env.yml │ ├── project │ │ ├── 00_download.sh │ │ ├── 01_wrapper_eval.sh │ │ ├── 02_toy_example.sh │ │ ├── 99_del.sh │ │ ├── DATA │ │ │ └── .gitkeep │ │ ├── README │ │ ├── baseline_PA │ │ │ ├── 00_train.sh │ │ │ ├── 01_eval.sh │ │ │ ├── 02_eval_alternative.sh │ │ │ ├── __pretrained │ │ │ │ └── .gitkeep │ │ │ ├── config.py │ │ │ ├── config_auto.py │ │ │ ├── main.py │ │ │ └── model.py │ │ └── conda.sh │ └── sandbox └── Baseline-RawNet2 │ ├── LICENSE │ ├── README.md │ ├── core_scripts │ ├── data_utils.py │ ├── main.py │ ├── model.py │ ├── model_config_RawNet.yaml │ └── requirements.txt ├── README.md └── eval-package ├── ASVspoof2021_eval_notebook.ipynb ├── README.md ├── archived-package-stage-1 ├── DF │ └── package-stage-1 │ │ ├── README.txt │ │ ├── download.sh │ │ ├── eval_metrics.py │ │ └── evaluate.py ├── LA │ └── package-stage-1 │ │ ├── README.txt │ │ ├── download.sh │ │ ├── eval_metrics.py │ │ └── evaluate.py └── PA │ └── package-stage-1 │ ├── README.txt │ ├── download.sh │ ├── eval_metrics.py │ └── evaluate.py ├── config.py ├── download.sh ├── eval_metrics.py ├── eval_wrapper.py ├── main.py ├── pd_tools.py └── table_API.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /DF/Baseline-CQCC-GMM/matlab/CQCC: -------------------------------------------------------------------------------- 1 | ../../../LA/Baseline-CQCC-GMM/matlab/CQCC -------------------------------------------------------------------------------- /DF/Baseline-CQCC-GMM/matlab/CQCC_GMM_ASVspoof_2021_baseline.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/DF/Baseline-CQCC-GMM/matlab/CQCC_GMM_ASVspoof_2021_baseline.m -------------------------------------------------------------------------------- /DF/Baseline-CQCC-GMM/matlab/GMM: -------------------------------------------------------------------------------- 1 | ../../../LA/Baseline-CQCC-GMM/matlab/GMM -------------------------------------------------------------------------------- /DF/Baseline-CQCC-GMM/matlab/LICENSE: -------------------------------------------------------------------------------- 1 | ../../../LA/Baseline-CQCC-GMM/matlab/LICENSE -------------------------------------------------------------------------------- /DF/Baseline-CQCC-GMM/matlab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/DF/Baseline-CQCC-GMM/matlab/README.md -------------------------------------------------------------------------------- /DF/Baseline-CQCC-GMM/python/CQCC: -------------------------------------------------------------------------------- 1 | ../../../LA/Baseline-CQCC-GMM/python/CQCC -------------------------------------------------------------------------------- /DF/Baseline-CQCC-GMM/python/README.md: -------------------------------------------------------------------------------- 1 | ../../../LA/Baseline-CQCC-GMM/python/README.md -------------------------------------------------------------------------------- /DF/Baseline-CQCC-GMM/python/asvspoof2021_baseline.py: -------------------------------------------------------------------------------- 1 | ../../../LA/Baseline-CQCC-GMM/python/asvspoof2021_baseline.py -------------------------------------------------------------------------------- /DF/Baseline-CQCC-GMM/python/gmm.py: -------------------------------------------------------------------------------- 1 | ../../../LA/Baseline-CQCC-GMM/python/gmm.py -------------------------------------------------------------------------------- /DF/Baseline-CQCC-GMM/python/gmm_scoring_asvspoof21.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/DF/Baseline-CQCC-GMM/python/gmm_scoring_asvspoof21.py -------------------------------------------------------------------------------- /DF/Baseline-LFCC-GMM/matlab/GMM: -------------------------------------------------------------------------------- 1 | ../../../LA/Baseline-CQCC-GMM/matlab/GMM -------------------------------------------------------------------------------- /DF/Baseline-LFCC-GMM/matlab/LFCC: -------------------------------------------------------------------------------- 1 | ../../../LA/Baseline-LFCC-GMM/matlab/LFCC -------------------------------------------------------------------------------- /DF/Baseline-LFCC-GMM/matlab/LFCC_GMM_ASVspoof_2021_baseline.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/DF/Baseline-LFCC-GMM/matlab/LFCC_GMM_ASVspoof_2021_baseline.m -------------------------------------------------------------------------------- /DF/Baseline-LFCC-GMM/matlab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/DF/Baseline-LFCC-GMM/matlab/README.md -------------------------------------------------------------------------------- /DF/Baseline-LFCC-GMM/python/LFCC_pipeline.py: -------------------------------------------------------------------------------- 1 | ../../../LA/Baseline-LFCC-GMM/python/LFCC_pipeline.py -------------------------------------------------------------------------------- /DF/Baseline-LFCC-GMM/python/README.md: -------------------------------------------------------------------------------- 1 | ../../../LA/Baseline-LFCC-GMM/python/README.md -------------------------------------------------------------------------------- /DF/Baseline-LFCC-GMM/python/asvspoof2021_baseline.py: -------------------------------------------------------------------------------- 1 | ../../../LA/Baseline-LFCC-GMM/python/asvspoof2021_baseline.py -------------------------------------------------------------------------------- /DF/Baseline-LFCC-GMM/python/gmm.py: -------------------------------------------------------------------------------- 1 | ../../../LA/Baseline-LFCC-GMM/python/gmm.py -------------------------------------------------------------------------------- /DF/Baseline-LFCC-GMM/python/gmm_scoring_asvspoof21.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/DF/Baseline-LFCC-GMM/python/gmm_scoring_asvspoof21.py -------------------------------------------------------------------------------- /DF/Baseline-LFCC-LCNN/LICENSE: -------------------------------------------------------------------------------- 1 | ../../LA/Baseline-LFCC-LCNN/LICENSE -------------------------------------------------------------------------------- /DF/Baseline-LFCC-LCNN/README.md: -------------------------------------------------------------------------------- 1 | ../../LA/Baseline-LFCC-LCNN/README.md -------------------------------------------------------------------------------- /DF/Baseline-LFCC-LCNN/core_modules: -------------------------------------------------------------------------------- 1 | ../../LA/Baseline-LFCC-LCNN/core_modules -------------------------------------------------------------------------------- /DF/Baseline-LFCC-LCNN/core_scripts: -------------------------------------------------------------------------------- 1 | ../../LA/Baseline-LFCC-LCNN/core_scripts -------------------------------------------------------------------------------- /DF/Baseline-LFCC-LCNN/env.sh: -------------------------------------------------------------------------------- 1 | ../../LA/Baseline-LFCC-LCNN/env.sh -------------------------------------------------------------------------------- /DF/Baseline-LFCC-LCNN/env.yml: -------------------------------------------------------------------------------- 1 | ../../LA/Baseline-LFCC-LCNN/env.yml -------------------------------------------------------------------------------- /DF/Baseline-LFCC-LCNN/project/00_download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/DF/Baseline-LFCC-LCNN/project/00_download.sh -------------------------------------------------------------------------------- /DF/Baseline-LFCC-LCNN/project/01_wrapper_eval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/DF/Baseline-LFCC-LCNN/project/01_wrapper_eval.sh -------------------------------------------------------------------------------- /DF/Baseline-LFCC-LCNN/project/02_toy_example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/DF/Baseline-LFCC-LCNN/project/02_toy_example.sh -------------------------------------------------------------------------------- /DF/Baseline-LFCC-LCNN/project/99_del.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/DF/Baseline-LFCC-LCNN/project/99_del.sh -------------------------------------------------------------------------------- /DF/Baseline-LFCC-LCNN/project/DATA/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DF/Baseline-LFCC-LCNN/project/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/DF/Baseline-LFCC-LCNN/project/README -------------------------------------------------------------------------------- /DF/Baseline-LFCC-LCNN/project/baseline_DF/00_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/DF/Baseline-LFCC-LCNN/project/baseline_DF/00_train.sh -------------------------------------------------------------------------------- /DF/Baseline-LFCC-LCNN/project/baseline_DF/01_eval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/DF/Baseline-LFCC-LCNN/project/baseline_DF/01_eval.sh -------------------------------------------------------------------------------- /DF/Baseline-LFCC-LCNN/project/baseline_DF/02_eval_alternative.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/DF/Baseline-LFCC-LCNN/project/baseline_DF/02_eval_alternative.sh -------------------------------------------------------------------------------- /DF/Baseline-LFCC-LCNN/project/baseline_DF/__pretrained/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DF/Baseline-LFCC-LCNN/project/baseline_DF/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/DF/Baseline-LFCC-LCNN/project/baseline_DF/config.py -------------------------------------------------------------------------------- /DF/Baseline-LFCC-LCNN/project/baseline_DF/config_auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/DF/Baseline-LFCC-LCNN/project/baseline_DF/config_auto.py -------------------------------------------------------------------------------- /DF/Baseline-LFCC-LCNN/project/baseline_DF/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/DF/Baseline-LFCC-LCNN/project/baseline_DF/main.py -------------------------------------------------------------------------------- /DF/Baseline-LFCC-LCNN/project/baseline_DF/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/DF/Baseline-LFCC-LCNN/project/baseline_DF/model.py -------------------------------------------------------------------------------- /DF/Baseline-LFCC-LCNN/project/conda.sh: -------------------------------------------------------------------------------- 1 | conda env create -f ../env.yml 2 | -------------------------------------------------------------------------------- /DF/Baseline-LFCC-LCNN/sandbox: -------------------------------------------------------------------------------- 1 | ../../LA/Baseline-LFCC-LCNN/sandbox -------------------------------------------------------------------------------- /DF/Baseline-RawNet2/LICENSE: -------------------------------------------------------------------------------- 1 | ../../LA/Baseline-RawNet2/LICENSE -------------------------------------------------------------------------------- /DF/Baseline-RawNet2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/DF/Baseline-RawNet2/README.md -------------------------------------------------------------------------------- /DF/Baseline-RawNet2/core_scripts: -------------------------------------------------------------------------------- 1 | ../../LA/Baseline-RawNet2/core_scripts -------------------------------------------------------------------------------- /DF/Baseline-RawNet2/data_utils.py: -------------------------------------------------------------------------------- 1 | ../../LA/Baseline-RawNet2/data_utils.py -------------------------------------------------------------------------------- /DF/Baseline-RawNet2/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/DF/Baseline-RawNet2/main.py -------------------------------------------------------------------------------- /DF/Baseline-RawNet2/model.py: -------------------------------------------------------------------------------- 1 | ../../LA/Baseline-RawNet2/model.py -------------------------------------------------------------------------------- /DF/Baseline-RawNet2/model_config_RawNet.yaml: -------------------------------------------------------------------------------- 1 | ../../LA/Baseline-RawNet2/model_config_RawNet.yaml -------------------------------------------------------------------------------- /DF/Baseline-RawNet2/requirements.txt: -------------------------------------------------------------------------------- 1 | ../../LA/Baseline-RawNet2/requirements.txt -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/CQCC/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/CQCC/.DS_Store -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/CQCC/CQT_toolbox_2013/cqt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/CQCC/CQT_toolbox_2013/cqt.m -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/CQCC/CQT_toolbox_2013/cqtCell2Sparse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/CQCC/CQT_toolbox_2013/cqtCell2Sparse.m -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/CQCC/CQT_toolbox_2013/cqtFillSparse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/CQCC/CQT_toolbox_2013/cqtFillSparse.m -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/CQCC/CQT_toolbox_2013/cqtSparse2Cell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/CQCC/CQT_toolbox_2013/cqtSparse2Cell.m -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/CQCC/CQT_toolbox_2013/hp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/CQCC/CQT_toolbox_2013/hp.m -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/CQCC/CQT_toolbox_2013/icqt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/CQCC/CQT_toolbox_2013/icqt.m -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/CQCC/CQT_toolbox_2013/nsdual.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/CQCC/CQT_toolbox_2013/nsdual.m -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/CQCC/CQT_toolbox_2013/nsgcqwin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/CQCC/CQT_toolbox_2013/nsgcqwin.m -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/CQCC/CQT_toolbox_2013/nsgtf_real.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/CQCC/CQT_toolbox_2013/nsgtf_real.m -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/CQCC/CQT_toolbox_2013/nsigtf_real.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/CQCC/CQT_toolbox_2013/nsigtf_real.m -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/CQCC/CQT_toolbox_2013/plotnsgtf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/CQCC/CQT_toolbox_2013/plotnsgtf.m -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/CQCC/CQT_toolbox_2013/winfuns.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/CQCC/CQT_toolbox_2013/winfuns.m -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/CQCC/D18_1000001.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/CQCC/D18_1000001.wav -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/CQCC/DEMO.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/CQCC/DEMO.m -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/CQCC/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/CQCC/README.txt -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/CQCC/cqcc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/CQCC/cqcc.m -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/CQCC_GMM_ASVspoof_2021_baseline.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/CQCC_GMM_ASVspoof_2021_baseline.m -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/GMM/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/GMM/.DS_Store -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/GMM/compute_llk.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/GMM/compute_llk.m -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/GMM/lgmmprob.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/GMM/lgmmprob.m -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/GMM/logsumexp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/GMM/logsumexp.m -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexa64/libvl.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexa64/libvl.so -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexa64/vl_gmm.mexa64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexa64/vl_gmm.mexa64 -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexglx/libvl.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexglx/libvl.so -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexglx/vl_gmm.mexglx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexglx/vl_gmm.mexglx -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexmaci/libvl.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexmaci/libvl.dylib -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexmaci/vl_gmm.mexmaci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexmaci/vl_gmm.mexmaci -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexmaci64/libvl.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexmaci64/libvl.dylib -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexmaci64/vl_gmm.mexmaci64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexmaci64/vl_gmm.mexmaci64 -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw32/msvcr100.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw32/msvcr100.dll -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw32/vl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw32/vl.dll -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw32/vl_gmm.mexw32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw32/vl_gmm.mexw32 -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/msvcr100.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/msvcr100.dll -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl.dll -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_aib.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_aib.mexw64 -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_aibhist.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_aibhist.mexw64 -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_alldist.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_alldist.mexw64 -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_alldist2.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_alldist2.mexw64 -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_binsearch.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_binsearch.mexw64 -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_binsum.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_binsum.mexw64 -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_covdet.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_covdet.mexw64 -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_cummax.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_cummax.mexw64 -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_dsift.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_dsift.mexw64 -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_erfill.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_erfill.mexw64 -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_fisher.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_fisher.mexw64 -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_getpid.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_getpid.mexw64 -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_gmm.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_gmm.mexw64 -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_hikmeans.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_hikmeans.mexw64 -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_hikmeanspush.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_hikmeanspush.mexw64 -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_hog.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_hog.mexw64 -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_homkermap.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_homkermap.mexw64 -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_ihashfind.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_ihashfind.mexw64 -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_ihashsum.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_ihashsum.mexw64 -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_ikmeans.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_ikmeans.mexw64 -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_ikmeanspush.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_ikmeanspush.mexw64 -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_imdisttf.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_imdisttf.mexw64 -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_imintegral.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_imintegral.mexw64 -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_imsmooth.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_imsmooth.mexw64 -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_imwbackwardmx.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_imwbackwardmx.mexw64 -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_inthist.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_inthist.mexw64 -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_irodr.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_irodr.mexw64 -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_kdtreebuild.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_kdtreebuild.mexw64 -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_kdtreequery.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_kdtreequery.mexw64 -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_kmeans.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_kmeans.mexw64 -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_lbp.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_lbp.mexw64 -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_liop.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_liop.mexw64 -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_localmax.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_localmax.mexw64 -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_mser.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_mser.mexw64 -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_quickshift.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_quickshift.mexw64 -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_rodr.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_rodr.mexw64 -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_sampleinthist.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_sampleinthist.mexw64 -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_sift.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_sift.mexw64 -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_siftdescriptor.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_siftdescriptor.mexw64 -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_simdctrl.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_simdctrl.mexw64 -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_slic.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_slic.mexw64 -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_svmtrain.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_svmtrain.mexw64 -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_threads.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_threads.mexw64 -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_tpsumx.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_tpsumx.mexw64 -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_twister.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_twister.mexw64 -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_ubcmatch.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_ubcmatch.mexw64 -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_version.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_version.mexw64 -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_vlad.mexw64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/GMM/vlfeat/mexw64/vl_vlad.mexw64 -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/LICENSE -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/matlab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/matlab/README.md -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/python/CQCC/CQT_toolbox_2013/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/python/CQCC/CQT_toolbox_2013/cqt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/python/CQCC/CQT_toolbox_2013/cqt.py -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/python/CQCC/CQT_toolbox_2013/cqtCell2Sparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/python/CQCC/CQT_toolbox_2013/cqtCell2Sparse.py -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/python/CQCC/CQT_toolbox_2013/cqtFillSparse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/python/CQCC/CQT_toolbox_2013/cqtFillSparse.py -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/python/CQCC/CQT_toolbox_2013/cqtSparse2Cell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/python/CQCC/CQT_toolbox_2013/cqtSparse2Cell.py -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/python/CQCC/CQT_toolbox_2013/hp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/python/CQCC/CQT_toolbox_2013/hp.py -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/python/CQCC/CQT_toolbox_2013/icqt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/python/CQCC/CQT_toolbox_2013/icqt.py -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/python/CQCC/CQT_toolbox_2013/nsdual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/python/CQCC/CQT_toolbox_2013/nsdual.py -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/python/CQCC/CQT_toolbox_2013/nsgcqwin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/python/CQCC/CQT_toolbox_2013/nsgcqwin.py -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/python/CQCC/CQT_toolbox_2013/nsgtf_real.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/python/CQCC/CQT_toolbox_2013/nsgtf_real.py -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/python/CQCC/CQT_toolbox_2013/nsigtf_real.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/python/CQCC/CQT_toolbox_2013/nsigtf_real.py -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/python/CQCC/CQT_toolbox_2013/winfuns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/python/CQCC/CQT_toolbox_2013/winfuns.py -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/python/CQCC/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/python/CQCC/README.txt -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/python/CQCC/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/python/CQCC/cqcc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/python/CQCC/cqcc.py -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/python/CQCC/cqcc_ori.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/python/CQCC/cqcc_ori.py -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/python/CQCC/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/python/CQCC/demo.py -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/python/README.md -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/python/asvspoof2021_baseline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/python/asvspoof2021_baseline.py -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/python/gmm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/python/gmm.py -------------------------------------------------------------------------------- /LA/Baseline-CQCC-GMM/python/gmm_scoring_asvspoof21.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-CQCC-GMM/python/gmm_scoring_asvspoof21.py -------------------------------------------------------------------------------- /LA/Baseline-LFCC-GMM/matlab/GMM: -------------------------------------------------------------------------------- 1 | ../../Baseline-CQCC-GMM/matlab/GMM -------------------------------------------------------------------------------- /LA/Baseline-LFCC-GMM/matlab/LFCC/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-GMM/matlab/LFCC/.DS_Store -------------------------------------------------------------------------------- /LA/Baseline-LFCC-GMM/matlab/LFCC/lfcc_bp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-GMM/matlab/LFCC/lfcc_bp.m -------------------------------------------------------------------------------- /LA/Baseline-LFCC-GMM/matlab/LFCC_GMM_ASVspoof_2021_baseline.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-GMM/matlab/LFCC_GMM_ASVspoof_2021_baseline.m -------------------------------------------------------------------------------- /LA/Baseline-LFCC-GMM/matlab/LICENSE: -------------------------------------------------------------------------------- 1 | ../../Baseline-CQCC-GMM/matlab/LICENSE -------------------------------------------------------------------------------- /LA/Baseline-LFCC-GMM/matlab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-GMM/matlab/README.md -------------------------------------------------------------------------------- /LA/Baseline-LFCC-GMM/python/LFCC_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-GMM/python/LFCC_pipeline.py -------------------------------------------------------------------------------- /LA/Baseline-LFCC-GMM/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-GMM/python/README.md -------------------------------------------------------------------------------- /LA/Baseline-LFCC-GMM/python/asvspoof2021_baseline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-GMM/python/asvspoof2021_baseline.py -------------------------------------------------------------------------------- /LA/Baseline-LFCC-GMM/python/gmm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-GMM/python/gmm.py -------------------------------------------------------------------------------- /LA/Baseline-LFCC-GMM/python/gmm_scoring_asvspoof21.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-GMM/python/gmm_scoring_asvspoof21.py -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-LCNN/LICENSE -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-LCNN/README.md -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/core_modules/a_softmax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-LCNN/core_modules/a_softmax.py -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/core_modules/am_softmax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-LCNN/core_modules/am_softmax.py -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/core_modules/grad_rev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-LCNN/core_modules/grad_rev.py -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/core_modules/oc_softmax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-LCNN/core_modules/oc_softmax.py -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/core_modules/p2sgrad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-LCNN/core_modules/p2sgrad.py -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/core_scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/core_scripts/config_parse/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/core_scripts/config_parse/arg_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-LCNN/core_scripts/config_parse/arg_parse.py -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/core_scripts/config_parse/config_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-LCNN/core_scripts/config_parse/config_parse.py -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/core_scripts/data_io/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/core_scripts/data_io/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-LCNN/core_scripts/data_io/conf.py -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/core_scripts/data_io/customize_collate_fn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-LCNN/core_scripts/data_io/customize_collate_fn.py -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/core_scripts/data_io/customize_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-LCNN/core_scripts/data_io/customize_dataset.py -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/core_scripts/data_io/customize_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-LCNN/core_scripts/data_io/customize_sampler.py -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/core_scripts/data_io/default_data_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-LCNN/core_scripts/data_io/default_data_io.py -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/core_scripts/data_io/io_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-LCNN/core_scripts/data_io/io_tools.py -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/core_scripts/data_io/seq_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-LCNN/core_scripts/data_io/seq_info.py -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/core_scripts/data_io/text_process/text_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-LCNN/core_scripts/data_io/text_process/text_io.py -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/core_scripts/data_io/text_process/tmp.txt: -------------------------------------------------------------------------------- 1 | This is a test file. 2 | That will happen in one day. 3 | -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/core_scripts/data_io/text_process/toolkit_all.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-LCNN/core_scripts/data_io/text_process/toolkit_all.py -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/core_scripts/data_io/text_process/toolkit_en.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-LCNN/core_scripts/data_io/text_process/toolkit_en.py -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/core_scripts/data_io/wav_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-LCNN/core_scripts/data_io/wav_tools.py -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/core_scripts/math_tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/core_scripts/math_tools/random_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-LCNN/core_scripts/math_tools/random_tools.py -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/core_scripts/math_tools/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-LCNN/core_scripts/math_tools/stats.py -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/core_scripts/nn_manager/nn_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-LCNN/core_scripts/nn_manager/nn_manager.py -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/core_scripts/nn_manager/nn_manager_GAN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-LCNN/core_scripts/nn_manager/nn_manager_GAN.py -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/core_scripts/nn_manager/nn_manager_conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-LCNN/core_scripts/nn_manager/nn_manager_conf.py -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/core_scripts/nn_manager/nn_manager_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-LCNN/core_scripts/nn_manager/nn_manager_tools.py -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/core_scripts/op_manager/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-LCNN/core_scripts/op_manager/conf.py -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/core_scripts/op_manager/lr_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-LCNN/core_scripts/op_manager/lr_scheduler.py -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/core_scripts/op_manager/op_display_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-LCNN/core_scripts/op_manager/op_display_tools.py -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/core_scripts/op_manager/op_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-LCNN/core_scripts/op_manager/op_manager.py -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/core_scripts/op_manager/op_process_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-LCNN/core_scripts/op_manager/op_process_monitor.py -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/core_scripts/other_tools/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/core_scripts/other_tools/data_warehouse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-LCNN/core_scripts/other_tools/data_warehouse.py -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/core_scripts/other_tools/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-LCNN/core_scripts/other_tools/debug.py -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/core_scripts/other_tools/display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-LCNN/core_scripts/other_tools/display.py -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/core_scripts/other_tools/list_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-LCNN/core_scripts/other_tools/list_tools.py -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/core_scripts/other_tools/log_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-LCNN/core_scripts/other_tools/log_parser.py -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/core_scripts/other_tools/random_name_mgn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-LCNN/core_scripts/other_tools/random_name_mgn.py -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/core_scripts/other_tools/script_model_para.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-LCNN/core_scripts/other_tools/script_model_para.py -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/core_scripts/other_tools/str_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-LCNN/core_scripts/other_tools/str_tools.py -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/core_scripts/startup_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-LCNN/core_scripts/startup_config.py -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/env.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-LCNN/env.sh -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-LCNN/env.yml -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/project/00_download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-LCNN/project/00_download.sh -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/project/01_wrapper_eval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-LCNN/project/01_wrapper_eval.sh -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/project/02_toy_example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-LCNN/project/02_toy_example.sh -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/project/99_del.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-LCNN/project/99_del.sh -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/project/DATA/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/project/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-LCNN/project/README -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/project/baseline_LA/00_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-LCNN/project/baseline_LA/00_train.sh -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/project/baseline_LA/01_eval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-LCNN/project/baseline_LA/01_eval.sh -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/project/baseline_LA/02_eval_alternative.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-LCNN/project/baseline_LA/02_eval_alternative.sh -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/project/baseline_LA/__pretrained/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/project/baseline_LA/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-LCNN/project/baseline_LA/config.py -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/project/baseline_LA/config_auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-LCNN/project/baseline_LA/config_auto.py -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/project/baseline_LA/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-LCNN/project/baseline_LA/main.py -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/project/baseline_LA/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-LCNN/project/baseline_LA/model.py -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/project/conda.sh: -------------------------------------------------------------------------------- 1 | conda env create -f ../env.yml 2 | -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/sandbox/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/sandbox/block_dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-LCNN/sandbox/block_dist.py -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/sandbox/block_nn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-LCNN/sandbox/block_nn.py -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/sandbox/block_nsf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-LCNN/sandbox/block_nsf.py -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/sandbox/block_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-LCNN/sandbox/block_resnet.py -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/sandbox/dist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-LCNN/sandbox/dist.py -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/sandbox/dynamic_prog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-LCNN/sandbox/dynamic_prog.py -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/sandbox/eval_asvspoof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-LCNN/sandbox/eval_asvspoof.py -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/sandbox/eval_music.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-LCNN/sandbox/eval_music.py -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/sandbox/util_dsp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-LCNN/sandbox/util_dsp.py -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/sandbox/util_frontend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-LCNN/sandbox/util_frontend.py -------------------------------------------------------------------------------- /LA/Baseline-LFCC-LCNN/sandbox/util_music.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-LFCC-LCNN/sandbox/util_music.py -------------------------------------------------------------------------------- /LA/Baseline-RawNet2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-RawNet2/LICENSE -------------------------------------------------------------------------------- /LA/Baseline-RawNet2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-RawNet2/README.md -------------------------------------------------------------------------------- /LA/Baseline-RawNet2/core_scripts: -------------------------------------------------------------------------------- 1 | ../../LA/Baseline-LFCC-LCNN/core_scripts -------------------------------------------------------------------------------- /LA/Baseline-RawNet2/data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-RawNet2/data_utils.py -------------------------------------------------------------------------------- /LA/Baseline-RawNet2/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-RawNet2/main.py -------------------------------------------------------------------------------- /LA/Baseline-RawNet2/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-RawNet2/model.py -------------------------------------------------------------------------------- /LA/Baseline-RawNet2/model_config_RawNet.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-RawNet2/model_config_RawNet.yaml -------------------------------------------------------------------------------- /LA/Baseline-RawNet2/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/LA/Baseline-RawNet2/requirements.txt -------------------------------------------------------------------------------- /PA/Baseline-CQCC-GMM/matlab/CQCC: -------------------------------------------------------------------------------- 1 | ../../../LA/Baseline-CQCC-GMM/matlab/CQCC -------------------------------------------------------------------------------- /PA/Baseline-CQCC-GMM/matlab/CQCC_GMM_ASVspoof_2021_baseline.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/PA/Baseline-CQCC-GMM/matlab/CQCC_GMM_ASVspoof_2021_baseline.m -------------------------------------------------------------------------------- /PA/Baseline-CQCC-GMM/matlab/GMM: -------------------------------------------------------------------------------- 1 | ../../../LA/Baseline-CQCC-GMM/matlab/GMM -------------------------------------------------------------------------------- /PA/Baseline-CQCC-GMM/matlab/LICENSE: -------------------------------------------------------------------------------- 1 | ../../../LA/Baseline-CQCC-GMM/matlab/LICENSE -------------------------------------------------------------------------------- /PA/Baseline-CQCC-GMM/matlab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/PA/Baseline-CQCC-GMM/matlab/README.md -------------------------------------------------------------------------------- /PA/Baseline-CQCC-GMM/python/CQCC: -------------------------------------------------------------------------------- 1 | ../../../LA/Baseline-CQCC-GMM/python/CQCC -------------------------------------------------------------------------------- /PA/Baseline-CQCC-GMM/python/README.md: -------------------------------------------------------------------------------- 1 | ../../../LA/Baseline-CQCC-GMM/python/README.md -------------------------------------------------------------------------------- /PA/Baseline-CQCC-GMM/python/asvspoof2021_baseline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/PA/Baseline-CQCC-GMM/python/asvspoof2021_baseline.py -------------------------------------------------------------------------------- /PA/Baseline-CQCC-GMM/python/gmm.py: -------------------------------------------------------------------------------- 1 | ../../../LA/Baseline-CQCC-GMM/python/gmm.py -------------------------------------------------------------------------------- /PA/Baseline-CQCC-GMM/python/gmm_scoring_asvspoof21.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/PA/Baseline-CQCC-GMM/python/gmm_scoring_asvspoof21.py -------------------------------------------------------------------------------- /PA/Baseline-LFCC-GMM/matlab/GMM: -------------------------------------------------------------------------------- 1 | ../../../LA/Baseline-CQCC-GMM/matlab/GMM -------------------------------------------------------------------------------- /PA/Baseline-LFCC-GMM/matlab/LFCC: -------------------------------------------------------------------------------- 1 | ../../../LA/Baseline-LFCC-GMM/matlab/LFCC -------------------------------------------------------------------------------- /PA/Baseline-LFCC-GMM/matlab/LFCC_GMM_ASVspoof_2021_baseline.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/PA/Baseline-LFCC-GMM/matlab/LFCC_GMM_ASVspoof_2021_baseline.m -------------------------------------------------------------------------------- /PA/Baseline-LFCC-GMM/matlab/LICENSE: -------------------------------------------------------------------------------- 1 | ../../../LA/Baseline-CQCC-GMM/matlab/LICENSE -------------------------------------------------------------------------------- /PA/Baseline-LFCC-GMM/matlab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/PA/Baseline-LFCC-GMM/matlab/README.md -------------------------------------------------------------------------------- /PA/Baseline-LFCC-GMM/python/LFCC_pipeline.py: -------------------------------------------------------------------------------- 1 | ../../../LA/Baseline-LFCC-GMM/python/LFCC_pipeline.py -------------------------------------------------------------------------------- /PA/Baseline-LFCC-GMM/python/README.md: -------------------------------------------------------------------------------- 1 | ../../../LA/Baseline-LFCC-GMM/python/README.md -------------------------------------------------------------------------------- /PA/Baseline-LFCC-GMM/python/asvspoof2021_baseline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/PA/Baseline-LFCC-GMM/python/asvspoof2021_baseline.py -------------------------------------------------------------------------------- /PA/Baseline-LFCC-GMM/python/gmm.py: -------------------------------------------------------------------------------- 1 | ../../../LA/Baseline-LFCC-GMM/python/gmm.py -------------------------------------------------------------------------------- /PA/Baseline-LFCC-GMM/python/gmm_scoring_asvspoof21.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/PA/Baseline-LFCC-GMM/python/gmm_scoring_asvspoof21.py -------------------------------------------------------------------------------- /PA/Baseline-LFCC-LCNN/LICENSE: -------------------------------------------------------------------------------- 1 | ../../LA/Baseline-LFCC-LCNN/LICENSE -------------------------------------------------------------------------------- /PA/Baseline-LFCC-LCNN/README.md: -------------------------------------------------------------------------------- 1 | ../../LA/Baseline-LFCC-LCNN/README.md -------------------------------------------------------------------------------- /PA/Baseline-LFCC-LCNN/core_modules: -------------------------------------------------------------------------------- 1 | ../../LA/Baseline-LFCC-LCNN/core_modules -------------------------------------------------------------------------------- /PA/Baseline-LFCC-LCNN/core_scripts: -------------------------------------------------------------------------------- 1 | ../../LA/Baseline-LFCC-LCNN/core_scripts -------------------------------------------------------------------------------- /PA/Baseline-LFCC-LCNN/env.sh: -------------------------------------------------------------------------------- 1 | ../../LA/Baseline-LFCC-LCNN/env.sh -------------------------------------------------------------------------------- /PA/Baseline-LFCC-LCNN/env.yml: -------------------------------------------------------------------------------- 1 | ../../LA/Baseline-LFCC-LCNN/env.yml -------------------------------------------------------------------------------- /PA/Baseline-LFCC-LCNN/project/00_download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/PA/Baseline-LFCC-LCNN/project/00_download.sh -------------------------------------------------------------------------------- /PA/Baseline-LFCC-LCNN/project/01_wrapper_eval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/PA/Baseline-LFCC-LCNN/project/01_wrapper_eval.sh -------------------------------------------------------------------------------- /PA/Baseline-LFCC-LCNN/project/02_toy_example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/PA/Baseline-LFCC-LCNN/project/02_toy_example.sh -------------------------------------------------------------------------------- /PA/Baseline-LFCC-LCNN/project/99_del.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/PA/Baseline-LFCC-LCNN/project/99_del.sh -------------------------------------------------------------------------------- /PA/Baseline-LFCC-LCNN/project/DATA/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PA/Baseline-LFCC-LCNN/project/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/PA/Baseline-LFCC-LCNN/project/README -------------------------------------------------------------------------------- /PA/Baseline-LFCC-LCNN/project/baseline_PA/00_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/PA/Baseline-LFCC-LCNN/project/baseline_PA/00_train.sh -------------------------------------------------------------------------------- /PA/Baseline-LFCC-LCNN/project/baseline_PA/01_eval.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/PA/Baseline-LFCC-LCNN/project/baseline_PA/01_eval.sh -------------------------------------------------------------------------------- /PA/Baseline-LFCC-LCNN/project/baseline_PA/02_eval_alternative.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/PA/Baseline-LFCC-LCNN/project/baseline_PA/02_eval_alternative.sh -------------------------------------------------------------------------------- /PA/Baseline-LFCC-LCNN/project/baseline_PA/__pretrained/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PA/Baseline-LFCC-LCNN/project/baseline_PA/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/PA/Baseline-LFCC-LCNN/project/baseline_PA/config.py -------------------------------------------------------------------------------- /PA/Baseline-LFCC-LCNN/project/baseline_PA/config_auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/PA/Baseline-LFCC-LCNN/project/baseline_PA/config_auto.py -------------------------------------------------------------------------------- /PA/Baseline-LFCC-LCNN/project/baseline_PA/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/PA/Baseline-LFCC-LCNN/project/baseline_PA/main.py -------------------------------------------------------------------------------- /PA/Baseline-LFCC-LCNN/project/baseline_PA/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/PA/Baseline-LFCC-LCNN/project/baseline_PA/model.py -------------------------------------------------------------------------------- /PA/Baseline-LFCC-LCNN/project/conda.sh: -------------------------------------------------------------------------------- 1 | conda env create -f ../env.yml 2 | -------------------------------------------------------------------------------- /PA/Baseline-LFCC-LCNN/sandbox: -------------------------------------------------------------------------------- 1 | ../../LA/Baseline-LFCC-LCNN/sandbox -------------------------------------------------------------------------------- /PA/Baseline-RawNet2/LICENSE: -------------------------------------------------------------------------------- 1 | ../../LA/Baseline-RawNet2/LICENSE -------------------------------------------------------------------------------- /PA/Baseline-RawNet2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/PA/Baseline-RawNet2/README.md -------------------------------------------------------------------------------- /PA/Baseline-RawNet2/core_scripts: -------------------------------------------------------------------------------- 1 | ../../LA/Baseline-RawNet2/core_scripts -------------------------------------------------------------------------------- /PA/Baseline-RawNet2/data_utils.py: -------------------------------------------------------------------------------- 1 | ../../LA/Baseline-RawNet2/data_utils.py -------------------------------------------------------------------------------- /PA/Baseline-RawNet2/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/PA/Baseline-RawNet2/main.py -------------------------------------------------------------------------------- /PA/Baseline-RawNet2/model.py: -------------------------------------------------------------------------------- 1 | ../../LA/Baseline-RawNet2/model.py -------------------------------------------------------------------------------- /PA/Baseline-RawNet2/model_config_RawNet.yaml: -------------------------------------------------------------------------------- 1 | ../../LA/Baseline-RawNet2/model_config_RawNet.yaml -------------------------------------------------------------------------------- /PA/Baseline-RawNet2/requirements.txt: -------------------------------------------------------------------------------- 1 | ../../LA/Baseline-RawNet2/requirements.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/README.md -------------------------------------------------------------------------------- /eval-package/ASVspoof2021_eval_notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/eval-package/ASVspoof2021_eval_notebook.ipynb -------------------------------------------------------------------------------- /eval-package/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/eval-package/README.md -------------------------------------------------------------------------------- /eval-package/archived-package-stage-1/DF/package-stage-1/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/eval-package/archived-package-stage-1/DF/package-stage-1/README.txt -------------------------------------------------------------------------------- /eval-package/archived-package-stage-1/DF/package-stage-1/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/eval-package/archived-package-stage-1/DF/package-stage-1/download.sh -------------------------------------------------------------------------------- /eval-package/archived-package-stage-1/DF/package-stage-1/eval_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/eval-package/archived-package-stage-1/DF/package-stage-1/eval_metrics.py -------------------------------------------------------------------------------- /eval-package/archived-package-stage-1/DF/package-stage-1/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/eval-package/archived-package-stage-1/DF/package-stage-1/evaluate.py -------------------------------------------------------------------------------- /eval-package/archived-package-stage-1/LA/package-stage-1/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/eval-package/archived-package-stage-1/LA/package-stage-1/README.txt -------------------------------------------------------------------------------- /eval-package/archived-package-stage-1/LA/package-stage-1/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/eval-package/archived-package-stage-1/LA/package-stage-1/download.sh -------------------------------------------------------------------------------- /eval-package/archived-package-stage-1/LA/package-stage-1/eval_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/eval-package/archived-package-stage-1/LA/package-stage-1/eval_metrics.py -------------------------------------------------------------------------------- /eval-package/archived-package-stage-1/LA/package-stage-1/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/eval-package/archived-package-stage-1/LA/package-stage-1/evaluate.py -------------------------------------------------------------------------------- /eval-package/archived-package-stage-1/PA/package-stage-1/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/eval-package/archived-package-stage-1/PA/package-stage-1/README.txt -------------------------------------------------------------------------------- /eval-package/archived-package-stage-1/PA/package-stage-1/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/eval-package/archived-package-stage-1/PA/package-stage-1/download.sh -------------------------------------------------------------------------------- /eval-package/archived-package-stage-1/PA/package-stage-1/eval_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/eval-package/archived-package-stage-1/PA/package-stage-1/eval_metrics.py -------------------------------------------------------------------------------- /eval-package/archived-package-stage-1/PA/package-stage-1/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/eval-package/archived-package-stage-1/PA/package-stage-1/evaluate.py -------------------------------------------------------------------------------- /eval-package/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/eval-package/config.py -------------------------------------------------------------------------------- /eval-package/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/eval-package/download.sh -------------------------------------------------------------------------------- /eval-package/eval_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/eval-package/eval_metrics.py -------------------------------------------------------------------------------- /eval-package/eval_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/eval-package/eval_wrapper.py -------------------------------------------------------------------------------- /eval-package/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/eval-package/main.py -------------------------------------------------------------------------------- /eval-package/pd_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/eval-package/pd_tools.py -------------------------------------------------------------------------------- /eval-package/table_API.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asvspoof-challenge/2021/HEAD/eval-package/table_API.py --------------------------------------------------------------------------------