├── README.md ├── embed_verif.py ├── embeddings ├── AMS_128Dropout.npy └── LM128Dropout.npy ├── figures ├── Spectrogram.png ├── extendedSpectrogram.png ├── reverseSpectrogram.png ├── rocVox_ROC.jpeg ├── rocVox_pairs.jpeg ├── roc_ROC.jpeg └── roc_pairs.jpeg ├── logs └── LM │ ├── LM_Ident_512D.log │ └── ResNet-20_512D.log ├── prototxt ├── AMS-20_modified.prototxt ├── LogisticMargin.prototxt ├── LogisticMargin_solver.prototxt ├── ResNet-20.prototxt └── ResNet-20_solver.prototxt ├── result └── LogisticMargin │ └── 512D │ └── Ident │ └── LM_512D_30_iter_60000.caffemodel ├── roc.py ├── roc_vox.py ├── sample.wav ├── sample_reverse.wav ├── test_ident.py └── train_aug.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahdiHajibabaei/unified-embedding/HEAD/README.md -------------------------------------------------------------------------------- /embed_verif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahdiHajibabaei/unified-embedding/HEAD/embed_verif.py -------------------------------------------------------------------------------- /embeddings/AMS_128Dropout.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahdiHajibabaei/unified-embedding/HEAD/embeddings/AMS_128Dropout.npy -------------------------------------------------------------------------------- /embeddings/LM128Dropout.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahdiHajibabaei/unified-embedding/HEAD/embeddings/LM128Dropout.npy -------------------------------------------------------------------------------- /figures/Spectrogram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahdiHajibabaei/unified-embedding/HEAD/figures/Spectrogram.png -------------------------------------------------------------------------------- /figures/extendedSpectrogram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahdiHajibabaei/unified-embedding/HEAD/figures/extendedSpectrogram.png -------------------------------------------------------------------------------- /figures/reverseSpectrogram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahdiHajibabaei/unified-embedding/HEAD/figures/reverseSpectrogram.png -------------------------------------------------------------------------------- /figures/rocVox_ROC.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahdiHajibabaei/unified-embedding/HEAD/figures/rocVox_ROC.jpeg -------------------------------------------------------------------------------- /figures/rocVox_pairs.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahdiHajibabaei/unified-embedding/HEAD/figures/rocVox_pairs.jpeg -------------------------------------------------------------------------------- /figures/roc_ROC.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahdiHajibabaei/unified-embedding/HEAD/figures/roc_ROC.jpeg -------------------------------------------------------------------------------- /figures/roc_pairs.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahdiHajibabaei/unified-embedding/HEAD/figures/roc_pairs.jpeg -------------------------------------------------------------------------------- /logs/LM/LM_Ident_512D.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahdiHajibabaei/unified-embedding/HEAD/logs/LM/LM_Ident_512D.log -------------------------------------------------------------------------------- /logs/LM/ResNet-20_512D.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahdiHajibabaei/unified-embedding/HEAD/logs/LM/ResNet-20_512D.log -------------------------------------------------------------------------------- /prototxt/AMS-20_modified.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahdiHajibabaei/unified-embedding/HEAD/prototxt/AMS-20_modified.prototxt -------------------------------------------------------------------------------- /prototxt/LogisticMargin.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahdiHajibabaei/unified-embedding/HEAD/prototxt/LogisticMargin.prototxt -------------------------------------------------------------------------------- /prototxt/LogisticMargin_solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahdiHajibabaei/unified-embedding/HEAD/prototxt/LogisticMargin_solver.prototxt -------------------------------------------------------------------------------- /prototxt/ResNet-20.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahdiHajibabaei/unified-embedding/HEAD/prototxt/ResNet-20.prototxt -------------------------------------------------------------------------------- /prototxt/ResNet-20_solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahdiHajibabaei/unified-embedding/HEAD/prototxt/ResNet-20_solver.prototxt -------------------------------------------------------------------------------- /result/LogisticMargin/512D/Ident/LM_512D_30_iter_60000.caffemodel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahdiHajibabaei/unified-embedding/HEAD/result/LogisticMargin/512D/Ident/LM_512D_30_iter_60000.caffemodel -------------------------------------------------------------------------------- /roc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahdiHajibabaei/unified-embedding/HEAD/roc.py -------------------------------------------------------------------------------- /roc_vox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahdiHajibabaei/unified-embedding/HEAD/roc_vox.py -------------------------------------------------------------------------------- /sample.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahdiHajibabaei/unified-embedding/HEAD/sample.wav -------------------------------------------------------------------------------- /sample_reverse.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahdiHajibabaei/unified-embedding/HEAD/sample_reverse.wav -------------------------------------------------------------------------------- /test_ident.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahdiHajibabaei/unified-embedding/HEAD/test_ident.py -------------------------------------------------------------------------------- /train_aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MahdiHajibabaei/unified-embedding/HEAD/train_aug.py --------------------------------------------------------------------------------