├── .gitignore ├── README.md ├── cfg ├── enroll_list.csv └── test_list.csv ├── constants.py ├── data ├── model │ └── weights.h5 └── wav │ ├── enroll │ ├── 19-227-0000.wav │ ├── 26-495-0000.wav │ └── 27-123349-0000.wav │ └── test │ ├── 19-198-0001.wav │ └── 27-123349-0001.wav ├── model.py ├── scoring.py ├── sigproc.py └── wav_reader.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linhdvu14/vggvox-speaker-identification/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linhdvu14/vggvox-speaker-identification/HEAD/README.md -------------------------------------------------------------------------------- /cfg/enroll_list.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linhdvu14/vggvox-speaker-identification/HEAD/cfg/enroll_list.csv -------------------------------------------------------------------------------- /cfg/test_list.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linhdvu14/vggvox-speaker-identification/HEAD/cfg/test_list.csv -------------------------------------------------------------------------------- /constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linhdvu14/vggvox-speaker-identification/HEAD/constants.py -------------------------------------------------------------------------------- /data/model/weights.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linhdvu14/vggvox-speaker-identification/HEAD/data/model/weights.h5 -------------------------------------------------------------------------------- /data/wav/enroll/19-227-0000.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linhdvu14/vggvox-speaker-identification/HEAD/data/wav/enroll/19-227-0000.wav -------------------------------------------------------------------------------- /data/wav/enroll/26-495-0000.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linhdvu14/vggvox-speaker-identification/HEAD/data/wav/enroll/26-495-0000.wav -------------------------------------------------------------------------------- /data/wav/enroll/27-123349-0000.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linhdvu14/vggvox-speaker-identification/HEAD/data/wav/enroll/27-123349-0000.wav -------------------------------------------------------------------------------- /data/wav/test/19-198-0001.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linhdvu14/vggvox-speaker-identification/HEAD/data/wav/test/19-198-0001.wav -------------------------------------------------------------------------------- /data/wav/test/27-123349-0001.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linhdvu14/vggvox-speaker-identification/HEAD/data/wav/test/27-123349-0001.wav -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linhdvu14/vggvox-speaker-identification/HEAD/model.py -------------------------------------------------------------------------------- /scoring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linhdvu14/vggvox-speaker-identification/HEAD/scoring.py -------------------------------------------------------------------------------- /sigproc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linhdvu14/vggvox-speaker-identification/HEAD/sigproc.py -------------------------------------------------------------------------------- /wav_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linhdvu14/vggvox-speaker-identification/HEAD/wav_reader.py --------------------------------------------------------------------------------