├── .gitignore ├── Dataset └── data_info_height_age.csv ├── LICENSE ├── Model ├── __pycache__ │ ├── models.cpython-38.pyc │ ├── sp_model.cpython-38.pyc │ └── utils.cpython-38.pyc ├── models.py └── utils.py ├── NISP ├── __pycache__ │ ├── dataset.cpython-37.pyc │ ├── dataset.cpython-38.pyc │ └── model.cpython-38.pyc ├── dataset.py ├── lightning_model.py ├── model.py └── prepare_nisp_data.py ├── README.md ├── TIMIT ├── __pycache__ │ ├── dataset.cpython-38.pyc │ ├── lightning_model.cpython-38.pyc │ ├── lightning_model_h.cpython-38.pyc │ └── lightning_model_multi_h.cpython-38.pyc ├── dataset.py ├── lightning_model.py ├── lightning_model_h.py └── prepare_timit_data.py ├── assets └── wav2vecframework.PNG ├── config.py ├── requirements.txt ├── test_nisp.py ├── test_timit.py ├── train_nisp.py └── train_timit.py /.gitignore: -------------------------------------------------------------------------------- 1 | anaconda3-2020_pytorch.pbs 2 | __pycache__/* -------------------------------------------------------------------------------- /Dataset/data_info_height_age.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shangeth/SpeakerProfiling/HEAD/Dataset/data_info_height_age.csv -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shangeth/SpeakerProfiling/HEAD/LICENSE -------------------------------------------------------------------------------- /Model/__pycache__/models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shangeth/SpeakerProfiling/HEAD/Model/__pycache__/models.cpython-38.pyc -------------------------------------------------------------------------------- /Model/__pycache__/sp_model.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shangeth/SpeakerProfiling/HEAD/Model/__pycache__/sp_model.cpython-38.pyc -------------------------------------------------------------------------------- /Model/__pycache__/utils.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shangeth/SpeakerProfiling/HEAD/Model/__pycache__/utils.cpython-38.pyc -------------------------------------------------------------------------------- /Model/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shangeth/SpeakerProfiling/HEAD/Model/models.py -------------------------------------------------------------------------------- /Model/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shangeth/SpeakerProfiling/HEAD/Model/utils.py -------------------------------------------------------------------------------- /NISP/__pycache__/dataset.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shangeth/SpeakerProfiling/HEAD/NISP/__pycache__/dataset.cpython-37.pyc -------------------------------------------------------------------------------- /NISP/__pycache__/dataset.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shangeth/SpeakerProfiling/HEAD/NISP/__pycache__/dataset.cpython-38.pyc -------------------------------------------------------------------------------- /NISP/__pycache__/model.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shangeth/SpeakerProfiling/HEAD/NISP/__pycache__/model.cpython-38.pyc -------------------------------------------------------------------------------- /NISP/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shangeth/SpeakerProfiling/HEAD/NISP/dataset.py -------------------------------------------------------------------------------- /NISP/lightning_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shangeth/SpeakerProfiling/HEAD/NISP/lightning_model.py -------------------------------------------------------------------------------- /NISP/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shangeth/SpeakerProfiling/HEAD/NISP/model.py -------------------------------------------------------------------------------- /NISP/prepare_nisp_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shangeth/SpeakerProfiling/HEAD/NISP/prepare_nisp_data.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shangeth/SpeakerProfiling/HEAD/README.md -------------------------------------------------------------------------------- /TIMIT/__pycache__/dataset.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shangeth/SpeakerProfiling/HEAD/TIMIT/__pycache__/dataset.cpython-38.pyc -------------------------------------------------------------------------------- /TIMIT/__pycache__/lightning_model.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shangeth/SpeakerProfiling/HEAD/TIMIT/__pycache__/lightning_model.cpython-38.pyc -------------------------------------------------------------------------------- /TIMIT/__pycache__/lightning_model_h.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shangeth/SpeakerProfiling/HEAD/TIMIT/__pycache__/lightning_model_h.cpython-38.pyc -------------------------------------------------------------------------------- /TIMIT/__pycache__/lightning_model_multi_h.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shangeth/SpeakerProfiling/HEAD/TIMIT/__pycache__/lightning_model_multi_h.cpython-38.pyc -------------------------------------------------------------------------------- /TIMIT/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shangeth/SpeakerProfiling/HEAD/TIMIT/dataset.py -------------------------------------------------------------------------------- /TIMIT/lightning_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shangeth/SpeakerProfiling/HEAD/TIMIT/lightning_model.py -------------------------------------------------------------------------------- /TIMIT/lightning_model_h.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shangeth/SpeakerProfiling/HEAD/TIMIT/lightning_model_h.py -------------------------------------------------------------------------------- /TIMIT/prepare_timit_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shangeth/SpeakerProfiling/HEAD/TIMIT/prepare_timit_data.py -------------------------------------------------------------------------------- /assets/wav2vecframework.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shangeth/SpeakerProfiling/HEAD/assets/wav2vecframework.PNG -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shangeth/SpeakerProfiling/HEAD/config.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shangeth/SpeakerProfiling/HEAD/requirements.txt -------------------------------------------------------------------------------- /test_nisp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shangeth/SpeakerProfiling/HEAD/test_nisp.py -------------------------------------------------------------------------------- /test_timit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shangeth/SpeakerProfiling/HEAD/test_timit.py -------------------------------------------------------------------------------- /train_nisp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shangeth/SpeakerProfiling/HEAD/train_nisp.py -------------------------------------------------------------------------------- /train_timit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shangeth/SpeakerProfiling/HEAD/train_timit.py --------------------------------------------------------------------------------