├── GMM_UBM ├── GMM_UBM_Matlab ├── ROC points for GMM_UBM.xlsx ├── ROC_GMM.png └── Readme for GMM_UBM ├── IVector ├── Ivector_ROC.png ├── Ivector Matlab ├── ROC points for iVector.xlsx ├── Readme for IVector └── ivector_ROC.py ├── README.md └── Voice-Vector ├── .gitignore ├── LICENSE ├── README.md ├── ROC data points Voice vector.ods ├── Voice vector.png_ROC ├── audio.py ├── data_load.py ├── deploy ├── client.py └── export_model.py ├── embedding.py ├── eval.py ├── feature_extract.py ├── hparam.py ├── hparams ├── default.yaml └── hparams.yaml ├── materials ├── arch.png ├── embed_age.png ├── embed_gender.png ├── eval_acc.png ├── old │ ├── embedding_gender.png │ └── title.png ├── title.png ├── train_acc.png └── train_loss.png ├── model.py ├── modules.py ├── prepro.py ├── remote_dataflow.py ├── requirements.txt ├── saved_model └── 1 │ ├── saved_model.pb │ └── variables │ ├── variables.data-00000-of-00001 │ └── variables.index ├── tensorpack_extension.py ├── train.py └── utils.py /GMM_UBM/GMM_UBM_Matlab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajual/Master-Voice_Prints/HEAD/GMM_UBM/GMM_UBM_Matlab -------------------------------------------------------------------------------- /GMM_UBM/ROC points for GMM_UBM.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajual/Master-Voice_Prints/HEAD/GMM_UBM/ROC points for GMM_UBM.xlsx -------------------------------------------------------------------------------- /GMM_UBM/ROC_GMM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajual/Master-Voice_Prints/HEAD/GMM_UBM/ROC_GMM.png -------------------------------------------------------------------------------- /GMM_UBM/Readme for GMM_UBM: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajual/Master-Voice_Prints/HEAD/GMM_UBM/Readme for GMM_UBM -------------------------------------------------------------------------------- /IVector/ Ivector_ROC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajual/Master-Voice_Prints/HEAD/IVector/ Ivector_ROC.png -------------------------------------------------------------------------------- /IVector/Ivector Matlab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajual/Master-Voice_Prints/HEAD/IVector/Ivector Matlab -------------------------------------------------------------------------------- /IVector/ROC points for iVector.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajual/Master-Voice_Prints/HEAD/IVector/ROC points for iVector.xlsx -------------------------------------------------------------------------------- /IVector/Readme for IVector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajual/Master-Voice_Prints/HEAD/IVector/Readme for IVector -------------------------------------------------------------------------------- /IVector/ivector_ROC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajual/Master-Voice_Prints/HEAD/IVector/ivector_ROC.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajual/Master-Voice_Prints/HEAD/README.md -------------------------------------------------------------------------------- /Voice-Vector/.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | logdir* 3 | *.py[cod] 4 | datasets 5 | .DS_Store 6 | outputs 7 | __* -------------------------------------------------------------------------------- /Voice-Vector/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajual/Master-Voice_Prints/HEAD/Voice-Vector/LICENSE -------------------------------------------------------------------------------- /Voice-Vector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajual/Master-Voice_Prints/HEAD/Voice-Vector/README.md -------------------------------------------------------------------------------- /Voice-Vector/ROC data points Voice vector.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajual/Master-Voice_Prints/HEAD/Voice-Vector/ROC data points Voice vector.ods -------------------------------------------------------------------------------- /Voice-Vector/Voice vector.png_ROC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajual/Master-Voice_Prints/HEAD/Voice-Vector/Voice vector.png_ROC -------------------------------------------------------------------------------- /Voice-Vector/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajual/Master-Voice_Prints/HEAD/Voice-Vector/audio.py -------------------------------------------------------------------------------- /Voice-Vector/data_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajual/Master-Voice_Prints/HEAD/Voice-Vector/data_load.py -------------------------------------------------------------------------------- /Voice-Vector/deploy/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajual/Master-Voice_Prints/HEAD/Voice-Vector/deploy/client.py -------------------------------------------------------------------------------- /Voice-Vector/deploy/export_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajual/Master-Voice_Prints/HEAD/Voice-Vector/deploy/export_model.py -------------------------------------------------------------------------------- /Voice-Vector/embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajual/Master-Voice_Prints/HEAD/Voice-Vector/embedding.py -------------------------------------------------------------------------------- /Voice-Vector/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajual/Master-Voice_Prints/HEAD/Voice-Vector/eval.py -------------------------------------------------------------------------------- /Voice-Vector/feature_extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajual/Master-Voice_Prints/HEAD/Voice-Vector/feature_extract.py -------------------------------------------------------------------------------- /Voice-Vector/hparam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajual/Master-Voice_Prints/HEAD/Voice-Vector/hparam.py -------------------------------------------------------------------------------- /Voice-Vector/hparams/default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajual/Master-Voice_Prints/HEAD/Voice-Vector/hparams/default.yaml -------------------------------------------------------------------------------- /Voice-Vector/hparams/hparams.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajual/Master-Voice_Prints/HEAD/Voice-Vector/hparams/hparams.yaml -------------------------------------------------------------------------------- /Voice-Vector/materials/arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajual/Master-Voice_Prints/HEAD/Voice-Vector/materials/arch.png -------------------------------------------------------------------------------- /Voice-Vector/materials/embed_age.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajual/Master-Voice_Prints/HEAD/Voice-Vector/materials/embed_age.png -------------------------------------------------------------------------------- /Voice-Vector/materials/embed_gender.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajual/Master-Voice_Prints/HEAD/Voice-Vector/materials/embed_gender.png -------------------------------------------------------------------------------- /Voice-Vector/materials/eval_acc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajual/Master-Voice_Prints/HEAD/Voice-Vector/materials/eval_acc.png -------------------------------------------------------------------------------- /Voice-Vector/materials/old/embedding_gender.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajual/Master-Voice_Prints/HEAD/Voice-Vector/materials/old/embedding_gender.png -------------------------------------------------------------------------------- /Voice-Vector/materials/old/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajual/Master-Voice_Prints/HEAD/Voice-Vector/materials/old/title.png -------------------------------------------------------------------------------- /Voice-Vector/materials/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajual/Master-Voice_Prints/HEAD/Voice-Vector/materials/title.png -------------------------------------------------------------------------------- /Voice-Vector/materials/train_acc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajual/Master-Voice_Prints/HEAD/Voice-Vector/materials/train_acc.png -------------------------------------------------------------------------------- /Voice-Vector/materials/train_loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajual/Master-Voice_Prints/HEAD/Voice-Vector/materials/train_loss.png -------------------------------------------------------------------------------- /Voice-Vector/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajual/Master-Voice_Prints/HEAD/Voice-Vector/model.py -------------------------------------------------------------------------------- /Voice-Vector/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajual/Master-Voice_Prints/HEAD/Voice-Vector/modules.py -------------------------------------------------------------------------------- /Voice-Vector/prepro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajual/Master-Voice_Prints/HEAD/Voice-Vector/prepro.py -------------------------------------------------------------------------------- /Voice-Vector/remote_dataflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajual/Master-Voice_Prints/HEAD/Voice-Vector/remote_dataflow.py -------------------------------------------------------------------------------- /Voice-Vector/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajual/Master-Voice_Prints/HEAD/Voice-Vector/requirements.txt -------------------------------------------------------------------------------- /Voice-Vector/saved_model/1/saved_model.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajual/Master-Voice_Prints/HEAD/Voice-Vector/saved_model/1/saved_model.pb -------------------------------------------------------------------------------- /Voice-Vector/saved_model/1/variables/variables.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajual/Master-Voice_Prints/HEAD/Voice-Vector/saved_model/1/variables/variables.data-00000-of-00001 -------------------------------------------------------------------------------- /Voice-Vector/saved_model/1/variables/variables.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajual/Master-Voice_Prints/HEAD/Voice-Vector/saved_model/1/variables/variables.index -------------------------------------------------------------------------------- /Voice-Vector/tensorpack_extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajual/Master-Voice_Prints/HEAD/Voice-Vector/tensorpack_extension.py -------------------------------------------------------------------------------- /Voice-Vector/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajual/Master-Voice_Prints/HEAD/Voice-Vector/train.py -------------------------------------------------------------------------------- /Voice-Vector/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prajual/Master-Voice_Prints/HEAD/Voice-Vector/utils.py --------------------------------------------------------------------------------