├── LICENSE ├── README.md ├── cdpam ├── README.md ├── pip_cdpam │ ├── __init__.py │ ├── cdpam.py │ └── models.py ├── requirements.txt └── sample ├── create_space ├── README.md ├── main.py └── sample.py ├── dataset ├── README.md ├── dataset_combined.txt ├── dataset_dummy_jnd.txt ├── dataset_eq.txt ├── dataset_linear.txt ├── dataset_reverb.txt └── licence.txt ├── dpam ├── __init__.py ├── __init__.pyc ├── dpam.py ├── helper.py ├── helper.pyc ├── network_model.py ├── network_model.pyc ├── pre-model │ ├── finetune_loss │ │ ├── my_test_model.data-00000-of-00001 │ │ ├── my_test_model.index │ │ └── my_test_model.meta │ ├── linear_layer_loss │ │ ├── my_test_model.data-00000-of-00001 │ │ ├── my_test_model.index │ │ └── my_test_model.meta │ ├── pretrained_loss │ │ ├── loss_model.ckpt.data-00000-of-00001 │ │ ├── loss_model.ckpt.index │ │ └── loss_model.ckpt.meta │ ├── scratch_loss │ │ ├── my_test_model.data-00000-of-00001 │ │ ├── my_test_model.index │ │ └── my_test_model.meta │ └── se_model │ │ ├── se_model.ckpt.data-00000-of-00001 │ │ ├── se_model.ckpt.index │ │ └── se_model.ckpt.meta └── setup.py ├── example_pip.py ├── metric_code ├── README.md ├── dataloader.py ├── dataloader.pyc ├── helper.py ├── helper.pyc ├── main.py ├── metric_use.py ├── metric_use_simple.py ├── network_model.py ├── network_model.pyc ├── saved_distances │ └── m1 └── summaries │ └── test ├── pre-model ├── finetune_loss │ ├── my_test_model.data-00000-of-00001 │ ├── my_test_model.index │ └── my_test_model.meta ├── linear_layer_loss │ ├── my_test_model.data-00000-of-00001 │ ├── my_test_model.index │ └── my_test_model.meta ├── pretrained_loss │ ├── loss_model.ckpt.data-00000-of-00001 │ ├── loss_model.ckpt.index │ └── loss_model.ckpt.meta ├── scratch_loss │ ├── my_test_model.data-00000-of-00001 │ ├── my_test_model.index │ └── my_test_model.meta └── se_model │ ├── se_model.ckpt.data-00000-of-00001 │ ├── se_model.ckpt.index │ └── se_model.ckpt.meta ├── requirements.txt ├── sample_audio ├── 2.wav ├── 4.wav └── ref.wav └── se_code ├── README.md ├── data_import.py ├── data_import.pyc ├── dataset ├── asc │ ├── trainset │ │ └── m1 │ └── valset │ │ └── m1 └── dat │ └── m1 ├── helper.py ├── helper.pyc ├── network_model.py ├── network_model.pyc ├── se_infer.py ├── se_train.py └── summaries └── test /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/README.md -------------------------------------------------------------------------------- /cdpam/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/cdpam/README.md -------------------------------------------------------------------------------- /cdpam/pip_cdpam/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/cdpam/pip_cdpam/__init__.py -------------------------------------------------------------------------------- /cdpam/pip_cdpam/cdpam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/cdpam/pip_cdpam/cdpam.py -------------------------------------------------------------------------------- /cdpam/pip_cdpam/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/cdpam/pip_cdpam/models.py -------------------------------------------------------------------------------- /cdpam/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/cdpam/requirements.txt -------------------------------------------------------------------------------- /cdpam/sample: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /create_space/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/create_space/README.md -------------------------------------------------------------------------------- /create_space/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/create_space/main.py -------------------------------------------------------------------------------- /create_space/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/create_space/sample.py -------------------------------------------------------------------------------- /dataset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/dataset/README.md -------------------------------------------------------------------------------- /dataset/dataset_combined.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/dataset/dataset_combined.txt -------------------------------------------------------------------------------- /dataset/dataset_dummy_jnd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/dataset/dataset_dummy_jnd.txt -------------------------------------------------------------------------------- /dataset/dataset_eq.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/dataset/dataset_eq.txt -------------------------------------------------------------------------------- /dataset/dataset_linear.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/dataset/dataset_linear.txt -------------------------------------------------------------------------------- /dataset/dataset_reverb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/dataset/dataset_reverb.txt -------------------------------------------------------------------------------- /dataset/licence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/dataset/licence.txt -------------------------------------------------------------------------------- /dpam/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/dpam/__init__.py -------------------------------------------------------------------------------- /dpam/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/dpam/__init__.pyc -------------------------------------------------------------------------------- /dpam/dpam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/dpam/dpam.py -------------------------------------------------------------------------------- /dpam/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/dpam/helper.py -------------------------------------------------------------------------------- /dpam/helper.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/dpam/helper.pyc -------------------------------------------------------------------------------- /dpam/network_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/dpam/network_model.py -------------------------------------------------------------------------------- /dpam/network_model.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/dpam/network_model.pyc -------------------------------------------------------------------------------- /dpam/pre-model/finetune_loss/my_test_model.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/dpam/pre-model/finetune_loss/my_test_model.data-00000-of-00001 -------------------------------------------------------------------------------- /dpam/pre-model/finetune_loss/my_test_model.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/dpam/pre-model/finetune_loss/my_test_model.index -------------------------------------------------------------------------------- /dpam/pre-model/finetune_loss/my_test_model.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/dpam/pre-model/finetune_loss/my_test_model.meta -------------------------------------------------------------------------------- /dpam/pre-model/linear_layer_loss/my_test_model.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/dpam/pre-model/linear_layer_loss/my_test_model.data-00000-of-00001 -------------------------------------------------------------------------------- /dpam/pre-model/linear_layer_loss/my_test_model.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/dpam/pre-model/linear_layer_loss/my_test_model.index -------------------------------------------------------------------------------- /dpam/pre-model/linear_layer_loss/my_test_model.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/dpam/pre-model/linear_layer_loss/my_test_model.meta -------------------------------------------------------------------------------- /dpam/pre-model/pretrained_loss/loss_model.ckpt.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/dpam/pre-model/pretrained_loss/loss_model.ckpt.data-00000-of-00001 -------------------------------------------------------------------------------- /dpam/pre-model/pretrained_loss/loss_model.ckpt.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/dpam/pre-model/pretrained_loss/loss_model.ckpt.index -------------------------------------------------------------------------------- /dpam/pre-model/pretrained_loss/loss_model.ckpt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/dpam/pre-model/pretrained_loss/loss_model.ckpt.meta -------------------------------------------------------------------------------- /dpam/pre-model/scratch_loss/my_test_model.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/dpam/pre-model/scratch_loss/my_test_model.data-00000-of-00001 -------------------------------------------------------------------------------- /dpam/pre-model/scratch_loss/my_test_model.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/dpam/pre-model/scratch_loss/my_test_model.index -------------------------------------------------------------------------------- /dpam/pre-model/scratch_loss/my_test_model.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/dpam/pre-model/scratch_loss/my_test_model.meta -------------------------------------------------------------------------------- /dpam/pre-model/se_model/se_model.ckpt.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/dpam/pre-model/se_model/se_model.ckpt.data-00000-of-00001 -------------------------------------------------------------------------------- /dpam/pre-model/se_model/se_model.ckpt.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/dpam/pre-model/se_model/se_model.ckpt.index -------------------------------------------------------------------------------- /dpam/pre-model/se_model/se_model.ckpt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/dpam/pre-model/se_model/se_model.ckpt.meta -------------------------------------------------------------------------------- /dpam/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/dpam/setup.py -------------------------------------------------------------------------------- /example_pip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/example_pip.py -------------------------------------------------------------------------------- /metric_code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/metric_code/README.md -------------------------------------------------------------------------------- /metric_code/dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/metric_code/dataloader.py -------------------------------------------------------------------------------- /metric_code/dataloader.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/metric_code/dataloader.pyc -------------------------------------------------------------------------------- /metric_code/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/metric_code/helper.py -------------------------------------------------------------------------------- /metric_code/helper.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/metric_code/helper.pyc -------------------------------------------------------------------------------- /metric_code/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/metric_code/main.py -------------------------------------------------------------------------------- /metric_code/metric_use.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/metric_code/metric_use.py -------------------------------------------------------------------------------- /metric_code/metric_use_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/metric_code/metric_use_simple.py -------------------------------------------------------------------------------- /metric_code/network_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/metric_code/network_model.py -------------------------------------------------------------------------------- /metric_code/network_model.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/metric_code/network_model.pyc -------------------------------------------------------------------------------- /metric_code/saved_distances/m1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /metric_code/summaries/test: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pre-model/finetune_loss/my_test_model.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/pre-model/finetune_loss/my_test_model.data-00000-of-00001 -------------------------------------------------------------------------------- /pre-model/finetune_loss/my_test_model.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/pre-model/finetune_loss/my_test_model.index -------------------------------------------------------------------------------- /pre-model/finetune_loss/my_test_model.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/pre-model/finetune_loss/my_test_model.meta -------------------------------------------------------------------------------- /pre-model/linear_layer_loss/my_test_model.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/pre-model/linear_layer_loss/my_test_model.data-00000-of-00001 -------------------------------------------------------------------------------- /pre-model/linear_layer_loss/my_test_model.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/pre-model/linear_layer_loss/my_test_model.index -------------------------------------------------------------------------------- /pre-model/linear_layer_loss/my_test_model.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/pre-model/linear_layer_loss/my_test_model.meta -------------------------------------------------------------------------------- /pre-model/pretrained_loss/loss_model.ckpt.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/pre-model/pretrained_loss/loss_model.ckpt.data-00000-of-00001 -------------------------------------------------------------------------------- /pre-model/pretrained_loss/loss_model.ckpt.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/pre-model/pretrained_loss/loss_model.ckpt.index -------------------------------------------------------------------------------- /pre-model/pretrained_loss/loss_model.ckpt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/pre-model/pretrained_loss/loss_model.ckpt.meta -------------------------------------------------------------------------------- /pre-model/scratch_loss/my_test_model.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/pre-model/scratch_loss/my_test_model.data-00000-of-00001 -------------------------------------------------------------------------------- /pre-model/scratch_loss/my_test_model.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/pre-model/scratch_loss/my_test_model.index -------------------------------------------------------------------------------- /pre-model/scratch_loss/my_test_model.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/pre-model/scratch_loss/my_test_model.meta -------------------------------------------------------------------------------- /pre-model/se_model/se_model.ckpt.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/pre-model/se_model/se_model.ckpt.data-00000-of-00001 -------------------------------------------------------------------------------- /pre-model/se_model/se_model.ckpt.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/pre-model/se_model/se_model.ckpt.index -------------------------------------------------------------------------------- /pre-model/se_model/se_model.ckpt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/pre-model/se_model/se_model.ckpt.meta -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/requirements.txt -------------------------------------------------------------------------------- /sample_audio/2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/sample_audio/2.wav -------------------------------------------------------------------------------- /sample_audio/4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/sample_audio/4.wav -------------------------------------------------------------------------------- /sample_audio/ref.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/sample_audio/ref.wav -------------------------------------------------------------------------------- /se_code/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/se_code/README.md -------------------------------------------------------------------------------- /se_code/data_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/se_code/data_import.py -------------------------------------------------------------------------------- /se_code/data_import.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/se_code/data_import.pyc -------------------------------------------------------------------------------- /se_code/dataset/asc/trainset/m1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /se_code/dataset/asc/valset/m1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /se_code/dataset/dat/m1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /se_code/helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/se_code/helper.py -------------------------------------------------------------------------------- /se_code/helper.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/se_code/helper.pyc -------------------------------------------------------------------------------- /se_code/network_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/se_code/network_model.py -------------------------------------------------------------------------------- /se_code/network_model.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/se_code/network_model.pyc -------------------------------------------------------------------------------- /se_code/se_infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/se_code/se_infer.py -------------------------------------------------------------------------------- /se_code/se_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pranaymanocha/PerceptualAudio/HEAD/se_code/se_train.py -------------------------------------------------------------------------------- /se_code/summaries/test: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------