├── .editorconfig ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── dev ├── create_freq_weighting_filter_ir.py ├── frequency_weighting.png ├── plot_filter_impulse_response.py ├── plot_filter_phase_shift.py └── plot_frequency_response.py ├── dev_requirements.txt ├── dev_requirements_np2x.txt ├── log_wmse_audio_quality ├── __init__.py ├── constants.py ├── filter_ir.pkl ├── freq_weighting_filter.py ├── metric.py └── utils.py ├── packaging.md ├── pytest.ini ├── setup.py └── tests ├── __init__.py └── test_metric.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomonosound/log-wmse-audio-quality/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomonosound/log-wmse-audio-quality/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomonosound/log-wmse-audio-quality/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomonosound/log-wmse-audio-quality/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomonosound/log-wmse-audio-quality/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomonosound/log-wmse-audio-quality/HEAD/README.md -------------------------------------------------------------------------------- /dev/create_freq_weighting_filter_ir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomonosound/log-wmse-audio-quality/HEAD/dev/create_freq_weighting_filter_ir.py -------------------------------------------------------------------------------- /dev/frequency_weighting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomonosound/log-wmse-audio-quality/HEAD/dev/frequency_weighting.png -------------------------------------------------------------------------------- /dev/plot_filter_impulse_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomonosound/log-wmse-audio-quality/HEAD/dev/plot_filter_impulse_response.py -------------------------------------------------------------------------------- /dev/plot_filter_phase_shift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomonosound/log-wmse-audio-quality/HEAD/dev/plot_filter_phase_shift.py -------------------------------------------------------------------------------- /dev/plot_frequency_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomonosound/log-wmse-audio-quality/HEAD/dev/plot_frequency_response.py -------------------------------------------------------------------------------- /dev_requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomonosound/log-wmse-audio-quality/HEAD/dev_requirements.txt -------------------------------------------------------------------------------- /dev_requirements_np2x.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomonosound/log-wmse-audio-quality/HEAD/dev_requirements_np2x.txt -------------------------------------------------------------------------------- /log_wmse_audio_quality/__init__.py: -------------------------------------------------------------------------------- 1 | from .metric import calculate_log_wmse 2 | 3 | __version__ = "0.2.0" 4 | -------------------------------------------------------------------------------- /log_wmse_audio_quality/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomonosound/log-wmse-audio-quality/HEAD/log_wmse_audio_quality/constants.py -------------------------------------------------------------------------------- /log_wmse_audio_quality/filter_ir.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomonosound/log-wmse-audio-quality/HEAD/log_wmse_audio_quality/filter_ir.pkl -------------------------------------------------------------------------------- /log_wmse_audio_quality/freq_weighting_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomonosound/log-wmse-audio-quality/HEAD/log_wmse_audio_quality/freq_weighting_filter.py -------------------------------------------------------------------------------- /log_wmse_audio_quality/metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomonosound/log-wmse-audio-quality/HEAD/log_wmse_audio_quality/metric.py -------------------------------------------------------------------------------- /log_wmse_audio_quality/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomonosound/log-wmse-audio-quality/HEAD/log_wmse_audio_quality/utils.py -------------------------------------------------------------------------------- /packaging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomonosound/log-wmse-audio-quality/HEAD/packaging.md -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomonosound/log-wmse-audio-quality/HEAD/pytest.ini -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomonosound/log-wmse-audio-quality/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nomonosound/log-wmse-audio-quality/HEAD/tests/test_metric.py --------------------------------------------------------------------------------