├── .DS_Store ├── README.md ├── meta ├── .DS_Store ├── voxceleb1_veri_test.txt ├── voxceleb1_veri_test_extended.txt ├── voxceleb1_veri_test_extended_fixed.txt ├── voxceleb1_veri_test_fixed.txt ├── voxceleb1_veri_test_hard.txt ├── voxceleb1_veri_test_hard_fixed.txt └── voxlb2_train.txt ├── requirements.txt ├── result └── .DS_Store ├── src ├── .DS_Store ├── .gitignore ├── backbone.py ├── generator.py ├── main.py ├── model.py ├── predict.py └── utils.py └── tool ├── .DS_Store └── toolkits.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeidiXie/VGG-Speaker-Recognition/HEAD/.DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeidiXie/VGG-Speaker-Recognition/HEAD/README.md -------------------------------------------------------------------------------- /meta/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeidiXie/VGG-Speaker-Recognition/HEAD/meta/.DS_Store -------------------------------------------------------------------------------- /meta/voxceleb1_veri_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeidiXie/VGG-Speaker-Recognition/HEAD/meta/voxceleb1_veri_test.txt -------------------------------------------------------------------------------- /meta/voxceleb1_veri_test_extended.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeidiXie/VGG-Speaker-Recognition/HEAD/meta/voxceleb1_veri_test_extended.txt -------------------------------------------------------------------------------- /meta/voxceleb1_veri_test_extended_fixed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeidiXie/VGG-Speaker-Recognition/HEAD/meta/voxceleb1_veri_test_extended_fixed.txt -------------------------------------------------------------------------------- /meta/voxceleb1_veri_test_fixed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeidiXie/VGG-Speaker-Recognition/HEAD/meta/voxceleb1_veri_test_fixed.txt -------------------------------------------------------------------------------- /meta/voxceleb1_veri_test_hard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeidiXie/VGG-Speaker-Recognition/HEAD/meta/voxceleb1_veri_test_hard.txt -------------------------------------------------------------------------------- /meta/voxceleb1_veri_test_hard_fixed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeidiXie/VGG-Speaker-Recognition/HEAD/meta/voxceleb1_veri_test_hard_fixed.txt -------------------------------------------------------------------------------- /meta/voxlb2_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeidiXie/VGG-Speaker-Recognition/HEAD/meta/voxlb2_train.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeidiXie/VGG-Speaker-Recognition/HEAD/requirements.txt -------------------------------------------------------------------------------- /result/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeidiXie/VGG-Speaker-Recognition/HEAD/result/.DS_Store -------------------------------------------------------------------------------- /src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeidiXie/VGG-Speaker-Recognition/HEAD/src/.DS_Store -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | .idea/* -------------------------------------------------------------------------------- /src/backbone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeidiXie/VGG-Speaker-Recognition/HEAD/src/backbone.py -------------------------------------------------------------------------------- /src/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeidiXie/VGG-Speaker-Recognition/HEAD/src/generator.py -------------------------------------------------------------------------------- /src/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeidiXie/VGG-Speaker-Recognition/HEAD/src/main.py -------------------------------------------------------------------------------- /src/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeidiXie/VGG-Speaker-Recognition/HEAD/src/model.py -------------------------------------------------------------------------------- /src/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeidiXie/VGG-Speaker-Recognition/HEAD/src/predict.py -------------------------------------------------------------------------------- /src/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeidiXie/VGG-Speaker-Recognition/HEAD/src/utils.py -------------------------------------------------------------------------------- /tool/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeidiXie/VGG-Speaker-Recognition/HEAD/tool/.DS_Store -------------------------------------------------------------------------------- /tool/toolkits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WeidiXie/VGG-Speaker-Recognition/HEAD/tool/toolkits.py --------------------------------------------------------------------------------