├── .gitignore ├── LICENSE ├── README.md ├── audios └── 00001.wav ├── config.py ├── data └── test_pairs.txt ├── data_gen.py ├── export.py ├── extract.py ├── images ├── embeddings.png └── theta_dist.png ├── models ├── __init__.py ├── arc_margin.py ├── embedder.py └── optimizer.py ├── pre_process.py ├── requirements.txt ├── test.py ├── test ├── test_cm.py ├── test_lr.py ├── test_pe.py └── test_trim.py ├── train.py ├── utils.py └── visualize.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Speaker-Embeddings/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Speaker-Embeddings/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Speaker-Embeddings/HEAD/README.md -------------------------------------------------------------------------------- /audios/00001.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Speaker-Embeddings/HEAD/audios/00001.wav -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Speaker-Embeddings/HEAD/config.py -------------------------------------------------------------------------------- /data/test_pairs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Speaker-Embeddings/HEAD/data/test_pairs.txt -------------------------------------------------------------------------------- /data_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Speaker-Embeddings/HEAD/data_gen.py -------------------------------------------------------------------------------- /export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Speaker-Embeddings/HEAD/export.py -------------------------------------------------------------------------------- /extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Speaker-Embeddings/HEAD/extract.py -------------------------------------------------------------------------------- /images/embeddings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Speaker-Embeddings/HEAD/images/embeddings.png -------------------------------------------------------------------------------- /images/theta_dist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Speaker-Embeddings/HEAD/images/theta_dist.png -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/arc_margin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Speaker-Embeddings/HEAD/models/arc_margin.py -------------------------------------------------------------------------------- /models/embedder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Speaker-Embeddings/HEAD/models/embedder.py -------------------------------------------------------------------------------- /models/optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Speaker-Embeddings/HEAD/models/optimizer.py -------------------------------------------------------------------------------- /pre_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Speaker-Embeddings/HEAD/pre_process.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | librosa -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Speaker-Embeddings/HEAD/test.py -------------------------------------------------------------------------------- /test/test_cm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Speaker-Embeddings/HEAD/test/test_cm.py -------------------------------------------------------------------------------- /test/test_lr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Speaker-Embeddings/HEAD/test/test_lr.py -------------------------------------------------------------------------------- /test/test_pe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Speaker-Embeddings/HEAD/test/test_pe.py -------------------------------------------------------------------------------- /test/test_trim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Speaker-Embeddings/HEAD/test/test_trim.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Speaker-Embeddings/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Speaker-Embeddings/HEAD/utils.py -------------------------------------------------------------------------------- /visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/foamliu/Speaker-Embeddings/HEAD/visualize.py --------------------------------------------------------------------------------