├── .github └── workflows │ └── codeql-analysis.yml ├── .gitignore ├── BaselineModel ├── Baseline-Inference.ipynb ├── nsnetv2_converted.onnx └── requirements.txt ├── CODE_OF_CONDUCT.md ├── INTERSPEECH_2022_Deep_PLC_Challenge.pdf ├── LICENSE ├── PLC-MOS-API-Example.ipynb ├── PLCMOS ├── README.md ├── diener2023plcmos.pdf ├── example_wavs │ ├── clean.wav │ ├── plc_good.wav │ └── plc_poor.wav ├── models │ ├── plcmos_v0.onnx │ ├── plcmos_v1_intrusive.onnx │ ├── plcmos_v1_nonintrusive.onnx │ ├── plcmos_v2.onnx │ └── plcmos_v2_val.onnx ├── plc_mos.py ├── requirements.txt └── requirements_standalone.txt ├── README.md └── SECURITY.md /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLC-Challenge/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLC-Challenge/HEAD/.gitignore -------------------------------------------------------------------------------- /BaselineModel/Baseline-Inference.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLC-Challenge/HEAD/BaselineModel/Baseline-Inference.ipynb -------------------------------------------------------------------------------- /BaselineModel/nsnetv2_converted.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLC-Challenge/HEAD/BaselineModel/nsnetv2_converted.onnx -------------------------------------------------------------------------------- /BaselineModel/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLC-Challenge/HEAD/BaselineModel/requirements.txt -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLC-Challenge/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /INTERSPEECH_2022_Deep_PLC_Challenge.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLC-Challenge/HEAD/INTERSPEECH_2022_Deep_PLC_Challenge.pdf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLC-Challenge/HEAD/LICENSE -------------------------------------------------------------------------------- /PLC-MOS-API-Example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLC-Challenge/HEAD/PLC-MOS-API-Example.ipynb -------------------------------------------------------------------------------- /PLCMOS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLC-Challenge/HEAD/PLCMOS/README.md -------------------------------------------------------------------------------- /PLCMOS/diener2023plcmos.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLC-Challenge/HEAD/PLCMOS/diener2023plcmos.pdf -------------------------------------------------------------------------------- /PLCMOS/example_wavs/clean.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLC-Challenge/HEAD/PLCMOS/example_wavs/clean.wav -------------------------------------------------------------------------------- /PLCMOS/example_wavs/plc_good.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLC-Challenge/HEAD/PLCMOS/example_wavs/plc_good.wav -------------------------------------------------------------------------------- /PLCMOS/example_wavs/plc_poor.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLC-Challenge/HEAD/PLCMOS/example_wavs/plc_poor.wav -------------------------------------------------------------------------------- /PLCMOS/models/plcmos_v0.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLC-Challenge/HEAD/PLCMOS/models/plcmos_v0.onnx -------------------------------------------------------------------------------- /PLCMOS/models/plcmos_v1_intrusive.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLC-Challenge/HEAD/PLCMOS/models/plcmos_v1_intrusive.onnx -------------------------------------------------------------------------------- /PLCMOS/models/plcmos_v1_nonintrusive.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLC-Challenge/HEAD/PLCMOS/models/plcmos_v1_nonintrusive.onnx -------------------------------------------------------------------------------- /PLCMOS/models/plcmos_v2.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLC-Challenge/HEAD/PLCMOS/models/plcmos_v2.onnx -------------------------------------------------------------------------------- /PLCMOS/models/plcmos_v2_val.onnx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLC-Challenge/HEAD/PLCMOS/models/plcmos_v2_val.onnx -------------------------------------------------------------------------------- /PLCMOS/plc_mos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLC-Challenge/HEAD/PLCMOS/plc_mos.py -------------------------------------------------------------------------------- /PLCMOS/requirements.txt: -------------------------------------------------------------------------------- 1 | onnxruntime 2 | numpy 3 | -------------------------------------------------------------------------------- /PLCMOS/requirements_standalone.txt: -------------------------------------------------------------------------------- 1 | onnxruntime 2 | numpy 3 | soundfile 4 | pandas 5 | tqdm 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLC-Challenge/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/PLC-Challenge/HEAD/SECURITY.md --------------------------------------------------------------------------------