├── 2020_Void - A fast and light voice liveness detection system.pdf ├── README.md ├── asv2017 └── protocol_V2 │ ├── ASVspoof2017_V2_dev.trl.txt │ ├── ASVspoof2017_V2_eval.trl.txt │ └── ASVspoof2017_V2_train.trn.txt ├── data_preparation.py ├── feature_extraction.py ├── features_labels ├── feature_label_dev.npy ├── feature_label_eval.npy └── feature_label_train.npy ├── models └── svm.pkl └── train_svm.py /2020_Void - A fast and light voice liveness detection system.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislab/void-voice-liveness-detection/HEAD/2020_Void - A fast and light voice liveness detection system.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislab/void-voice-liveness-detection/HEAD/README.md -------------------------------------------------------------------------------- /asv2017/protocol_V2/ASVspoof2017_V2_dev.trl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislab/void-voice-liveness-detection/HEAD/asv2017/protocol_V2/ASVspoof2017_V2_dev.trl.txt -------------------------------------------------------------------------------- /asv2017/protocol_V2/ASVspoof2017_V2_eval.trl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislab/void-voice-liveness-detection/HEAD/asv2017/protocol_V2/ASVspoof2017_V2_eval.trl.txt -------------------------------------------------------------------------------- /asv2017/protocol_V2/ASVspoof2017_V2_train.trn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislab/void-voice-liveness-detection/HEAD/asv2017/protocol_V2/ASVspoof2017_V2_train.trn.txt -------------------------------------------------------------------------------- /data_preparation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislab/void-voice-liveness-detection/HEAD/data_preparation.py -------------------------------------------------------------------------------- /feature_extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislab/void-voice-liveness-detection/HEAD/feature_extraction.py -------------------------------------------------------------------------------- /features_labels/feature_label_dev.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislab/void-voice-liveness-detection/HEAD/features_labels/feature_label_dev.npy -------------------------------------------------------------------------------- /features_labels/feature_label_eval.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislab/void-voice-liveness-detection/HEAD/features_labels/feature_label_eval.npy -------------------------------------------------------------------------------- /features_labels/feature_label_train.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislab/void-voice-liveness-detection/HEAD/features_labels/feature_label_train.npy -------------------------------------------------------------------------------- /models/svm.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislab/void-voice-liveness-detection/HEAD/models/svm.pkl -------------------------------------------------------------------------------- /train_svm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislab/void-voice-liveness-detection/HEAD/train_svm.py --------------------------------------------------------------------------------