├── .gitignore ├── Evaluation Test Dataset └── README.md ├── LICENSE ├── README.md ├── Training └── Dev datasets │ ├── ConferencingSpeech_2022_Challenge_Evaluation_Plan_version2.pdf │ ├── NISQACorpus │ └── NISQA_corpus_mos.csv │ ├── README.md │ └── TencentCorpus │ ├── README.md │ ├── withReverberationTrainDevMOS.csv │ └── withoutReverberationTrainDevMOS.csv ├── baseline ├── README.md └── weights │ ├── baseline2_retraining_NISQA_full_ep_080.tar │ └── training_base_model_dff_vanilla_ep_050.tar ├── eval ├── README.md ├── eval.py ├── eval_result.py └── test.csv └── evns.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConferencingSpeech/ConferencingSpeech2022/HEAD/.gitignore -------------------------------------------------------------------------------- /Evaluation Test Dataset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConferencingSpeech/ConferencingSpeech2022/HEAD/Evaluation Test Dataset/README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConferencingSpeech/ConferencingSpeech2022/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConferencingSpeech/ConferencingSpeech2022/HEAD/README.md -------------------------------------------------------------------------------- /Training/Dev datasets/ConferencingSpeech_2022_Challenge_Evaluation_Plan_version2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConferencingSpeech/ConferencingSpeech2022/HEAD/Training/Dev datasets/ConferencingSpeech_2022_Challenge_Evaluation_Plan_version2.pdf -------------------------------------------------------------------------------- /Training/Dev datasets/NISQACorpus/NISQA_corpus_mos.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConferencingSpeech/ConferencingSpeech2022/HEAD/Training/Dev datasets/NISQACorpus/NISQA_corpus_mos.csv -------------------------------------------------------------------------------- /Training/Dev datasets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConferencingSpeech/ConferencingSpeech2022/HEAD/Training/Dev datasets/README.md -------------------------------------------------------------------------------- /Training/Dev datasets/TencentCorpus/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Training/Dev datasets/TencentCorpus/withReverberationTrainDevMOS.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConferencingSpeech/ConferencingSpeech2022/HEAD/Training/Dev datasets/TencentCorpus/withReverberationTrainDevMOS.csv -------------------------------------------------------------------------------- /Training/Dev datasets/TencentCorpus/withoutReverberationTrainDevMOS.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConferencingSpeech/ConferencingSpeech2022/HEAD/Training/Dev datasets/TencentCorpus/withoutReverberationTrainDevMOS.csv -------------------------------------------------------------------------------- /baseline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConferencingSpeech/ConferencingSpeech2022/HEAD/baseline/README.md -------------------------------------------------------------------------------- /baseline/weights/baseline2_retraining_NISQA_full_ep_080.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConferencingSpeech/ConferencingSpeech2022/HEAD/baseline/weights/baseline2_retraining_NISQA_full_ep_080.tar -------------------------------------------------------------------------------- /baseline/weights/training_base_model_dff_vanilla_ep_050.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConferencingSpeech/ConferencingSpeech2022/HEAD/baseline/weights/training_base_model_dff_vanilla_ep_050.tar -------------------------------------------------------------------------------- /eval/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConferencingSpeech/ConferencingSpeech2022/HEAD/eval/README.md -------------------------------------------------------------------------------- /eval/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConferencingSpeech/ConferencingSpeech2022/HEAD/eval/eval.py -------------------------------------------------------------------------------- /eval/eval_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConferencingSpeech/ConferencingSpeech2022/HEAD/eval/eval_result.py -------------------------------------------------------------------------------- /eval/test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConferencingSpeech/ConferencingSpeech2022/HEAD/eval/test.csv -------------------------------------------------------------------------------- /evns.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ConferencingSpeech/ConferencingSpeech2022/HEAD/evns.yml --------------------------------------------------------------------------------