diff --git a/.gitignore b/.gitignore index 3f2d086e47f62e9957daa6d3f2ad1d08beb0bf72..e922075fa6f0b92913d1d01b38942778a5839582 100644 --- a/.gitignore +++ b/.gitignore @@ -14,6 +14,7 @@ mc.double experiments/selection/*/proc_input/*.wav experiments/selection/*/proc_input/*.pcm experiments/selection/*/proc_output/ +experiments/selection/*/config/*cat*-lab_*.yml *~ tests/tmp_output_* tests/cut diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6ffbc26482e6c98b4174e4b1fd1d717476e64a15..d5a2b1b593e06413ff2540b3680af78de0e9cbbb 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -81,7 +81,7 @@ experiments: script: - *print-common-info - *get-codec-binaries - - python3 -m pytest tests/test_experiments.py -n auto | tee log.txt + - python3 -m pytest tests/test_experiments.py::test_generate_test_items -n auto | tee log.txt artifacts: paths: - experiments/selection/*/proc_output/*.log diff --git a/README.md b/README.md index 934940aee0edf62e7527f7364e1f728cfd8e40b4..5d1421d13982781445229a47621b8bc614c43098 100755 --- a/README.md +++ b/README.md @@ -690,8 +690,35 @@ ISM Please refer to [the notebook](./examples/audiotools.ipynb) for an overview. -# Selection test experiments +# How to generate the configs and process items for the selection test experiments -The folder `experiments/selection` contains a directory skeleton for processing items for the various selection test experiments including the config files. E.g. for processing the items for BS1534-1a, the input files need to be put into `experiments/selection/BS1534-1a/proc_input`, then execute `python3 -m ivas_processing_scripts experiments/selection/BS1534-1a/config/BS1534-1a.yml`. The output files will be in `experiments/selection/BS1534-1a/proc_output`, in subfolders per conditions. +The script `generate_test.py` is used to generate config files and process items for the selection test experiments: +``` +usage: generate_test.py [-h] [--no_parallel] [--create_cfg_only] exp_lab_pairs [exp_lab_pairs ...] + +Generate config files and process files for selecton experiments. Experiment names and lab ids must be given as comma-separated pairs (e.g. 'P800-5,b BS1534-4a,d ...') + +positional arguments: + exp_lab_pairs The combinations of experiment/lab-id that you want to generate, separated by whitespace. Experiment and lab id need to be separated by a comma. + +options: + -h, --help show this help message and exit + --no_parallel If given, configs will not be run in parallel + --create_cfg_only If given, only create the configs and folder structure without processing items +``` +Before running the script, one needs to put the input files in the respective input folder (including the background noise files, see below). If input files are missing, the script will complain ad stop. For example, for processing tests P800-3 and BS1534-4a for labs b and d, respectively, command line would look like this (no whitespace between the commas!): +``` +python3 generate_test.py P800-3,b BS1534-4a,d +``` -Note that for P800 experiments, there are separate configs per category as different background noises need to be specified. Thus, there are several config files with `-catX` suffix available. The background noise files need to be put into `experiments/selection/P800-X/background_noise`. To generate all categories, there is a convenience script `create_items_p800.py` in the repository root folder. \ No newline at end of file +Tests are processed separately per category and per lab (as some values in the configs are dependent on category and lab). For each experiment, a static base config is stored from which the actual configs are generated (identfied by the suffix `catX-lab_Y.yml`). For P800 tests, there are 6 categories each. The BS1534 experiments do not define categories, except for the MASA ones (BAS534-7a/b) - there one might mix FOA and HOA2 input material, so ther eare 2 categories for those in the scripts (category 1 for FOA, category 2 for HOA2). In `experiments/selection/` there is a folder structure prepared for all selection experiments, in which you have to put the input files for your test. For example, for P800-1: +``` +experiments/selection/P800-1/ +├── background_noise <--- put your background files in here and name them as background_noisecatX.wav. Not all experiments use background noise +├── config <--- contains base config, generated configs will be stored here, too +│ ├── P800-1.yml +├── proc_input +│ ├── catX <--- put your input files for cat X in here +└── proc_output <--- collect your output from here, example subfolder below +│ ├── catX-lab_Y <--- NOTE: this is only generated by the script and not checked in in the repository +``` \ No newline at end of file diff --git a/create_items_p800.py b/create_items_p800.py deleted file mode 100644 index dc4d747b0ebcd370a21a731cee3421fdfb53acdb..0000000000000000000000000000000000000000 --- a/create_items_p800.py +++ /dev/null @@ -1,33 +0,0 @@ -#! /usr/bin/env python3 -import argparse -from pathlib import Path - -from ivas_processing_scripts import main as generate_test -from ivas_processing_scripts.utils import apply_func_parallel - -P800_TESTS = [f"P800-{i}" for i in range(1, 8)] - - -class Arguments: - def __init__(self, config): - self.config = config - self.debug = False - # used to overwrite the multiprocessing key in the configs to rather parallelize on category level - self.multiprocessing = False - - -def create_items(testname): - p800_path = Path(f"experiments/selection/{testname}") - p800_cfgs = p800_path.joinpath("config").glob("P800*cat*.yml") - - args = [Arguments(str(cfg)) for cfg in p800_cfgs] - apply_func_parallel(generate_test, zip(args), type="mp") - - -# if is necessary here so that multiprocessing does not crash -if __name__ == "__main__": - parser = argparse.ArgumentParser() - parser.add_argument("testname", choices=P800_TESTS) - args = parser.parse_args() - - create_items(args.testname) diff --git a/experiments/selection/P800-2/proc_output/cat1/.gitkeep b/experiments/selection/BS1534-7a/proc_input/cat1/.gitkeep similarity index 100% rename from experiments/selection/P800-2/proc_output/cat1/.gitkeep rename to experiments/selection/BS1534-7a/proc_input/cat1/.gitkeep diff --git a/experiments/selection/P800-2/proc_output/cat2/.gitkeep b/experiments/selection/BS1534-7a/proc_input/cat2/.gitkeep similarity index 100% rename from experiments/selection/P800-2/proc_output/cat2/.gitkeep rename to experiments/selection/BS1534-7a/proc_input/cat2/.gitkeep diff --git a/experiments/selection/P800-2/proc_output/cat3/.gitkeep b/experiments/selection/BS1534-7b/proc_input/cat1/.gitkeep similarity index 100% rename from experiments/selection/P800-2/proc_output/cat3/.gitkeep rename to experiments/selection/BS1534-7b/proc_input/cat1/.gitkeep diff --git a/experiments/selection/P800-2/proc_output/cat4/.gitkeep b/experiments/selection/BS1534-7b/proc_input/cat2/.gitkeep similarity index 100% rename from experiments/selection/P800-2/proc_output/cat4/.gitkeep rename to experiments/selection/BS1534-7b/proc_input/cat2/.gitkeep diff --git a/experiments/selection/P800-1/config/P800-1-cat1.yml b/experiments/selection/P800-1/config/P800-1-cat1.yml deleted file mode 100644 index 378c9ebb20fdbb18b47dc1a1736d9cbcf5251b6b..0000000000000000000000000000000000000000 --- a/experiments/selection/P800-1/config/P800-1-cat1.yml +++ /dev/null @@ -1,343 +0,0 @@ ---- -################################################ -# General configuration -################################################ - -name: P800-1 -master_seed: 5 -prerun_seed: 2 - -input_path: "experiments/selection/P800-1/proc_input/cat1" -output_path: "experiments/selection/P800-1/proc_output/cat1" -use_windows_codec_binaries: true -condition_in_output_filename: true - -################################################ -### Input configuration -################################################ -input: - fmt: "STEREO" - # TODO: to be clarified in Test Plan - fs: 48000 - -################################################ -### Pre-processing on individual items -################################################ -preprocessing: - mask: "HP50" - loudness: -26 - window: 100 - -################################################ -### Pre-processing on whole signal(s) -################################################ -preprocessing_2: - concatenate_input: true - # concatenation_order: [] - preamble: 10000 - preamble_noise: true - repeat_signal: true - background_noise: - ### REQUIRED: SNR for background noise in dB - snr: 45 - ### REQUIRED: Path to background noise, must have same format and sampling rate as input signal(s) - background_noise_path: "experiments/selection/P800-1/background_noise/background_noise_cat1.wav" - -################################################# -### Bitstream processing -################################################# - -################################################ -### Configuration for conditions under test -################################################ -conditions_to_generate: - ### Reference and anchor conditions ########################## - c01: - type: ref - c02: - type: mnru - q: 28 - c03: - type: mnru - q: 24 - c04: - type: mnru - q: 20 - c05: - type: mnru - q: 16 - c06: - type: esdru - alpha: 0.7 - c07: - type: esdru - alpha: 0.4 - c08: - type: esdru - alpha: 0.1 - - ### EVS condition ################################ - c09: - type: evs - bitrates: - - 7200 - cod: - opts: ["-max_band", "SWB"] - dec: - c10: - type: evs - bitrates: - - 8000 - cod: - opts: ["-max_band", "SWB"] - dec: - c11: - type: evs - bitrates: - - 9600 - cod: - opts: ["-max_band", "SWB"] - dec: - c12: - type: evs - bitrates: - - 13200 - cod: - opts: ["-max_band", "SWB"] - dec: - c13: - type: evs - bitrates: - - 16400 - cod: - opts: ["-max_band", "SWB"] - dec: - c14: - type: evs - bitrates: - - 24400 - cod: - opts: ["-max_band", "SWB"] - dec: - c15: - type: evs - bitrates: - - 32000 - cod: - opts: ["-max_band", "SWB"] - dec: - - c16: - type: evs - bitrates: - - 7200 - cod: - opts: ["-max_band", "SWB"] - dec: - tx: - type: "FER" - error_rate: 5 - c17: - type: evs - bitrates: - - 8000 - cod: - opts: ["-max_band", "SWB"] - dec: - tx: - type: "FER" - error_rate: 5 - c18: - type: evs - bitrates: - - 9600 - cod: - opts: ["-max_band", "SWB"] - dec: - tx: - type: "FER" - error_rate: 5 - c19: - type: evs - bitrates: - - 13200 - cod: - opts: ["-max_band", "SWB"] - dec: - tx: - type: "FER" - error_rate: 5 - c20: - type: evs - bitrates: - - 16400 - cod: - opts: ["-max_band", "SWB"] - dec: - tx: - type: "FER" - error_rate: 5 - c21: - type: evs - bitrates: - - 24400 - cod: - opts: ["-max_band", "SWB"] - dec: - tx: - type: "FER" - error_rate: 5 - c22: - type: evs - bitrates: - - 32000 - cod: - opts: ["-max_band", "SWB"] - dec: - tx: - type: "FER" - error_rate: 5 - - c23: - type: evs - bitrates: - - 13200 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - c24: - type: evs - bitrates: - - 8000 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - tx: - type: "FER" - error_rate: 5 - - ### IVAS condition ############################### - c25: - type: ivas - bitrates: - - 13200 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - c26: - type: ivas - bitrates: - - 16400 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - c27: - type: ivas - bitrates: - - 24400 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - c28: - type: ivas - bitrates: - - 32000 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - c29: - type: ivas - bitrates: - - 48000 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - - c30: - type: ivas - bitrates: - - 13200 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - tx: - type: "FER" - error_rate: 5 - c31: - type: ivas - bitrates: - - 16400 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - tx: - type: "FER" - error_rate: 5 - c32: - type: ivas - bitrates: - - 24400 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - tx: - type: "FER" - error_rate: 5 - c33: - type: ivas - bitrates: - - 32000 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - tx: - type: "FER" - error_rate: 5 - c34: - type: ivas - bitrates: - - 48000 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - tx: - type: "FER" - error_rate: 5 - - c35: - type: ivas - bitrates: - - 24400 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - fmt: "STEREO" - c36: - type: ivas - bitrates: - - 13200 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - fmt: "STEREO" - tx: - type: "FER" - error_rate: 5 - -################################################ -### Post-processing -################################################ -postprocessing: - fmt: "STEREO" - fs: 48000 - loudness: -26 diff --git a/experiments/selection/P800-1/config/P800-1-cat2.yml b/experiments/selection/P800-1/config/P800-1-cat2.yml deleted file mode 100644 index 80704d486843a22ddaa0a1b3f3fee44890b4488c..0000000000000000000000000000000000000000 --- a/experiments/selection/P800-1/config/P800-1-cat2.yml +++ /dev/null @@ -1,343 +0,0 @@ ---- -################################################ -# General configuration -################################################ - -name: P800-1 -master_seed: 5 -prerun_seed: 2 - -input_path: "experiments/selection/P800-1/proc_input/cat2" -output_path: "experiments/selection/P800-1/proc_output/cat2" -use_windows_codec_binaries: true -condition_in_output_filename: true - -################################################ -### Input configuration -################################################ -input: - fmt: "STEREO" - # TODO: to be clarified in Test Plan - fs: 48000 - -################################################ -### Pre-processing on individual items -################################################ -preprocessing: - mask: "HP50" - loudness: -26 - window: 100 - -################################################ -### Pre-processing on whole signal(s) -################################################ -preprocessing_2: - concatenate_input: true - # concatenation_order: [] - preamble: 10000 - preamble_noise: true - repeat_signal: true - background_noise: - ### REQUIRED: SNR for background noise in dB - snr: 45 - ### REQUIRED: Path to background noise, must have same format and sampling rate as input signal(s) - background_noise_path: "experiments/selection/P800-1/background_noise/background_noise_cat2.wav" - -################################################# -### Bitstream processing -################################################# - -################################################ -### Configuration for conditions under test -################################################ -conditions_to_generate: - ### Reference and anchor conditions ########################## - c01: - type: ref - c02: - type: mnru - q: 28 - c03: - type: mnru - q: 24 - c04: - type: mnru - q: 20 - c05: - type: mnru - q: 16 - c06: - type: esdru - alpha: 0.7 - c07: - type: esdru - alpha: 0.4 - c08: - type: esdru - alpha: 0.1 - - ### EVS condition ################################ - c09: - type: evs - bitrates: - - 7200 - cod: - opts: ["-max_band", "SWB"] - dec: - c10: - type: evs - bitrates: - - 8000 - cod: - opts: ["-max_band", "SWB"] - dec: - c11: - type: evs - bitrates: - - 9600 - cod: - opts: ["-max_band", "SWB"] - dec: - c12: - type: evs - bitrates: - - 13200 - cod: - opts: ["-max_band", "SWB"] - dec: - c13: - type: evs - bitrates: - - 16400 - cod: - opts: ["-max_band", "SWB"] - dec: - c14: - type: evs - bitrates: - - 24400 - cod: - opts: ["-max_band", "SWB"] - dec: - c15: - type: evs - bitrates: - - 32000 - cod: - opts: ["-max_band", "SWB"] - dec: - - c16: - type: evs - bitrates: - - 7200 - cod: - opts: ["-max_band", "SWB"] - dec: - tx: - type: "FER" - error_rate: 5 - c17: - type: evs - bitrates: - - 8000 - cod: - opts: ["-max_band", "SWB"] - dec: - tx: - type: "FER" - error_rate: 5 - c18: - type: evs - bitrates: - - 9600 - cod: - opts: ["-max_band", "SWB"] - dec: - tx: - type: "FER" - error_rate: 5 - c19: - type: evs - bitrates: - - 13200 - cod: - opts: ["-max_band", "SWB"] - dec: - tx: - type: "FER" - error_rate: 5 - c20: - type: evs - bitrates: - - 16400 - cod: - opts: ["-max_band", "SWB"] - dec: - tx: - type: "FER" - error_rate: 5 - c21: - type: evs - bitrates: - - 24400 - cod: - opts: ["-max_band", "SWB"] - dec: - tx: - type: "FER" - error_rate: 5 - c22: - type: evs - bitrates: - - 32000 - cod: - opts: ["-max_band", "SWB"] - dec: - tx: - type: "FER" - error_rate: 5 - - c23: - type: evs - bitrates: - - 13200 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - c24: - type: evs - bitrates: - - 8000 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - tx: - type: "FER" - error_rate: 5 - - ### IVAS condition ############################### - c25: - type: ivas - bitrates: - - 13200 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - c26: - type: ivas - bitrates: - - 16400 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - c27: - type: ivas - bitrates: - - 24400 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - c28: - type: ivas - bitrates: - - 32000 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - c29: - type: ivas - bitrates: - - 48000 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - - c30: - type: ivas - bitrates: - - 13200 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - tx: - type: "FER" - error_rate: 5 - c31: - type: ivas - bitrates: - - 16400 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - tx: - type: "FER" - error_rate: 5 - c32: - type: ivas - bitrates: - - 24400 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - tx: - type: "FER" - error_rate: 5 - c33: - type: ivas - bitrates: - - 32000 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - tx: - type: "FER" - error_rate: 5 - c34: - type: ivas - bitrates: - - 48000 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - tx: - type: "FER" - error_rate: 5 - - c35: - type: ivas - bitrates: - - 24400 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - fmt: "STEREO" - c36: - type: ivas - bitrates: - - 13200 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - fmt: "STEREO" - tx: - type: "FER" - error_rate: 5 - -################################################ -### Post-processing -################################################ -postprocessing: - fmt: "STEREO" - fs: 48000 - loudness: -26 diff --git a/experiments/selection/P800-1/config/P800-1-cat3.yml b/experiments/selection/P800-1/config/P800-1-cat3.yml deleted file mode 100644 index 496022710dd4d4cf84d386e86d7af2a7791d71b7..0000000000000000000000000000000000000000 --- a/experiments/selection/P800-1/config/P800-1-cat3.yml +++ /dev/null @@ -1,343 +0,0 @@ ---- -################################################ -# General configuration -################################################ - -name: P800-1 -master_seed: 5 -prerun_seed: 2 - -input_path: "experiments/selection/P800-1/proc_input/cat3" -output_path: "experiments/selection/P800-1/proc_output/cat3" -use_windows_codec_binaries: true -condition_in_output_filename: true - -################################################ -### Input configuration -################################################ -input: - fmt: "STEREO" - # TODO: to be clarified in Test Plan - fs: 48000 - -################################################ -### Pre-processing on individual items -################################################ -preprocessing: - mask: "HP50" - loudness: -26 - window: 100 - -################################################ -### Pre-processing on whole signal(s) -################################################ -preprocessing_2: - concatenate_input: true - # concatenation_order: [] - preamble: 10000 - preamble_noise: true - repeat_signal: true - background_noise: - ### REQUIRED: SNR for background noise in dB - snr: 45 - ### REQUIRED: Path to background noise, must have same format and sampling rate as input signal(s) - background_noise_path: "experiments/selection/P800-1/background_noise/background_noise_cat3.wav" - -################################################# -### Bitstream processing -################################################# - -################################################ -### Configuration for conditions under test -################################################ -conditions_to_generate: - ### Reference and anchor conditions ########################## - c01: - type: ref - c02: - type: mnru - q: 28 - c03: - type: mnru - q: 24 - c04: - type: mnru - q: 20 - c05: - type: mnru - q: 16 - c06: - type: esdru - alpha: 0.7 - c07: - type: esdru - alpha: 0.4 - c08: - type: esdru - alpha: 0.1 - - ### EVS condition ################################ - c09: - type: evs - bitrates: - - 7200 - cod: - opts: ["-max_band", "SWB"] - dec: - c10: - type: evs - bitrates: - - 8000 - cod: - opts: ["-max_band", "SWB"] - dec: - c11: - type: evs - bitrates: - - 9600 - cod: - opts: ["-max_band", "SWB"] - dec: - c12: - type: evs - bitrates: - - 13200 - cod: - opts: ["-max_band", "SWB"] - dec: - c13: - type: evs - bitrates: - - 16400 - cod: - opts: ["-max_band", "SWB"] - dec: - c14: - type: evs - bitrates: - - 24400 - cod: - opts: ["-max_band", "SWB"] - dec: - c15: - type: evs - bitrates: - - 32000 - cod: - opts: ["-max_band", "SWB"] - dec: - - c16: - type: evs - bitrates: - - 7200 - cod: - opts: ["-max_band", "SWB"] - dec: - tx: - type: "FER" - error_rate: 5 - c17: - type: evs - bitrates: - - 8000 - cod: - opts: ["-max_band", "SWB"] - dec: - tx: - type: "FER" - error_rate: 5 - c18: - type: evs - bitrates: - - 9600 - cod: - opts: ["-max_band", "SWB"] - dec: - tx: - type: "FER" - error_rate: 5 - c19: - type: evs - bitrates: - - 13200 - cod: - opts: ["-max_band", "SWB"] - dec: - tx: - type: "FER" - error_rate: 5 - c20: - type: evs - bitrates: - - 16400 - cod: - opts: ["-max_band", "SWB"] - dec: - tx: - type: "FER" - error_rate: 5 - c21: - type: evs - bitrates: - - 24400 - cod: - opts: ["-max_band", "SWB"] - dec: - tx: - type: "FER" - error_rate: 5 - c22: - type: evs - bitrates: - - 32000 - cod: - opts: ["-max_band", "SWB"] - dec: - tx: - type: "FER" - error_rate: 5 - - c23: - type: evs - bitrates: - - 13200 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - c24: - type: evs - bitrates: - - 8000 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - tx: - type: "FER" - error_rate: 5 - - ### IVAS condition ############################### - c25: - type: ivas - bitrates: - - 13200 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - c26: - type: ivas - bitrates: - - 16400 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - c27: - type: ivas - bitrates: - - 24400 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - c28: - type: ivas - bitrates: - - 32000 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - c29: - type: ivas - bitrates: - - 48000 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - - c30: - type: ivas - bitrates: - - 13200 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - tx: - type: "FER" - error_rate: 5 - c31: - type: ivas - bitrates: - - 16400 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - tx: - type: "FER" - error_rate: 5 - c32: - type: ivas - bitrates: - - 24400 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - tx: - type: "FER" - error_rate: 5 - c33: - type: ivas - bitrates: - - 32000 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - tx: - type: "FER" - error_rate: 5 - c34: - type: ivas - bitrates: - - 48000 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - tx: - type: "FER" - error_rate: 5 - - c35: - type: ivas - bitrates: - - 24400 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - fmt: "STEREO" - c36: - type: ivas - bitrates: - - 13200 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - fmt: "STEREO" - tx: - type: "FER" - error_rate: 5 - -################################################ -### Post-processing -################################################ -postprocessing: - fmt: "STEREO" - fs: 48000 - loudness: -26 diff --git a/experiments/selection/P800-1/config/P800-1-cat5.yml b/experiments/selection/P800-1/config/P800-1-cat5.yml deleted file mode 100644 index 9956da00cbb2ef0acd4418ba4548873844954544..0000000000000000000000000000000000000000 --- a/experiments/selection/P800-1/config/P800-1-cat5.yml +++ /dev/null @@ -1,343 +0,0 @@ ---- -################################################ -# General configuration -################################################ - -name: P800-1 -master_seed: 5 -prerun_seed: 2 - -input_path: "experiments/selection/P800-1/proc_input/cat5" -output_path: "experiments/selection/P800-1/proc_output/cat5" -use_windows_codec_binaries: true -condition_in_output_filename: true - -################################################ -### Input configuration -################################################ -input: - fmt: "STEREO" - # TODO: to be clarified in Test Plan - fs: 48000 - -################################################ -### Pre-processing on individual items -################################################ -preprocessing: - mask: "HP50" - loudness: -26 - window: 100 - -################################################ -### Pre-processing on whole signal(s) -################################################ -preprocessing_2: - concatenate_input: true - # concatenation_order: [] - preamble: 10000 - preamble_noise: true - repeat_signal: true - background_noise: - ### REQUIRED: SNR for background noise in dB - snr: 45 - ### REQUIRED: Path to background noise, must have same format and sampling rate as input signal(s) - background_noise_path: "experiments/selection/P800-1/background_noise/background_noise_cat5.wav" - -################################################# -### Bitstream processing -################################################# - -################################################ -### Configuration for conditions under test -################################################ -conditions_to_generate: - ### Reference and anchor conditions ########################## - c01: - type: ref - c02: - type: mnru - q: 28 - c03: - type: mnru - q: 24 - c04: - type: mnru - q: 20 - c05: - type: mnru - q: 16 - c06: - type: esdru - alpha: 0.7 - c07: - type: esdru - alpha: 0.4 - c08: - type: esdru - alpha: 0.1 - - ### EVS condition ################################ - c09: - type: evs - bitrates: - - 7200 - cod: - opts: ["-max_band", "SWB"] - dec: - c10: - type: evs - bitrates: - - 8000 - cod: - opts: ["-max_band", "SWB"] - dec: - c11: - type: evs - bitrates: - - 9600 - cod: - opts: ["-max_band", "SWB"] - dec: - c12: - type: evs - bitrates: - - 13200 - cod: - opts: ["-max_band", "SWB"] - dec: - c13: - type: evs - bitrates: - - 16400 - cod: - opts: ["-max_band", "SWB"] - dec: - c14: - type: evs - bitrates: - - 24400 - cod: - opts: ["-max_band", "SWB"] - dec: - c15: - type: evs - bitrates: - - 32000 - cod: - opts: ["-max_band", "SWB"] - dec: - - c16: - type: evs - bitrates: - - 7200 - cod: - opts: ["-max_band", "SWB"] - dec: - tx: - type: "FER" - error_rate: 5 - c17: - type: evs - bitrates: - - 8000 - cod: - opts: ["-max_band", "SWB"] - dec: - tx: - type: "FER" - error_rate: 5 - c18: - type: evs - bitrates: - - 9600 - cod: - opts: ["-max_band", "SWB"] - dec: - tx: - type: "FER" - error_rate: 5 - c19: - type: evs - bitrates: - - 13200 - cod: - opts: ["-max_band", "SWB"] - dec: - tx: - type: "FER" - error_rate: 5 - c20: - type: evs - bitrates: - - 16400 - cod: - opts: ["-max_band", "SWB"] - dec: - tx: - type: "FER" - error_rate: 5 - c21: - type: evs - bitrates: - - 24400 - cod: - opts: ["-max_band", "SWB"] - dec: - tx: - type: "FER" - error_rate: 5 - c22: - type: evs - bitrates: - - 32000 - cod: - opts: ["-max_band", "SWB"] - dec: - tx: - type: "FER" - error_rate: 5 - - c23: - type: evs - bitrates: - - 13200 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - c24: - type: evs - bitrates: - - 8000 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - tx: - type: "FER" - error_rate: 5 - - ### IVAS condition ############################### - c25: - type: ivas - bitrates: - - 13200 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - c26: - type: ivas - bitrates: - - 16400 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - c27: - type: ivas - bitrates: - - 24400 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - c28: - type: ivas - bitrates: - - 32000 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - c29: - type: ivas - bitrates: - - 48000 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - - c30: - type: ivas - bitrates: - - 13200 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - tx: - type: "FER" - error_rate: 5 - c31: - type: ivas - bitrates: - - 16400 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - tx: - type: "FER" - error_rate: 5 - c32: - type: ivas - bitrates: - - 24400 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - tx: - type: "FER" - error_rate: 5 - c33: - type: ivas - bitrates: - - 32000 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - tx: - type: "FER" - error_rate: 5 - c34: - type: ivas - bitrates: - - 48000 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - tx: - type: "FER" - error_rate: 5 - - c35: - type: ivas - bitrates: - - 24400 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - fmt: "STEREO" - c36: - type: ivas - bitrates: - - 13200 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - fmt: "STEREO" - tx: - type: "FER" - error_rate: 5 - -################################################ -### Post-processing -################################################ -postprocessing: - fmt: "STEREO" - fs: 48000 - loudness: -26 diff --git a/experiments/selection/P800-1/config/P800-1-cat6.yml b/experiments/selection/P800-1/config/P800-1-cat6.yml deleted file mode 100644 index bcc7fdd586993899437440e91798701f736e22b6..0000000000000000000000000000000000000000 --- a/experiments/selection/P800-1/config/P800-1-cat6.yml +++ /dev/null @@ -1,343 +0,0 @@ ---- -################################################ -# General configuration -################################################ - -name: P800-1 -master_seed: 5 -prerun_seed: 2 - -input_path: "experiments/selection/P800-1/proc_input/cat6" -output_path: "experiments/selection/P800-1/proc_output/cat6" -use_windows_codec_binaries: true -condition_in_output_filename: true - -################################################ -### Input configuration -################################################ -input: - fmt: "STEREO" - # TODO: to be clarified in Test Plan - fs: 48000 - -################################################ -### Pre-processing on individual items -################################################ -preprocessing: - mask: "HP50" - loudness: -26 - window: 100 - -################################################ -### Pre-processing on whole signal(s) -################################################ -preprocessing_2: - concatenate_input: true - # concatenation_order: [] - preamble: 10000 - preamble_noise: true - repeat_signal: true - background_noise: - ### REQUIRED: SNR for background noise in dB - snr: 45 - ### REQUIRED: Path to background noise, must have same format and sampling rate as input signal(s) - background_noise_path: "experiments/selection/P800-1/background_noise/background_noise_cat6.wav" - -################################################# -### Bitstream processing -################################################# - -################################################ -### Configuration for conditions under test -################################################ -conditions_to_generate: - ### Reference and anchor conditions ########################## - c01: - type: ref - c02: - type: mnru - q: 28 - c03: - type: mnru - q: 24 - c04: - type: mnru - q: 20 - c05: - type: mnru - q: 16 - c06: - type: esdru - alpha: 0.7 - c07: - type: esdru - alpha: 0.4 - c08: - type: esdru - alpha: 0.1 - - ### EVS condition ################################ - c09: - type: evs - bitrates: - - 7200 - cod: - opts: ["-max_band", "SWB"] - dec: - c10: - type: evs - bitrates: - - 8000 - cod: - opts: ["-max_band", "SWB"] - dec: - c11: - type: evs - bitrates: - - 9600 - cod: - opts: ["-max_band", "SWB"] - dec: - c12: - type: evs - bitrates: - - 13200 - cod: - opts: ["-max_band", "SWB"] - dec: - c13: - type: evs - bitrates: - - 16400 - cod: - opts: ["-max_band", "SWB"] - dec: - c14: - type: evs - bitrates: - - 24400 - cod: - opts: ["-max_band", "SWB"] - dec: - c15: - type: evs - bitrates: - - 32000 - cod: - opts: ["-max_band", "SWB"] - dec: - - c16: - type: evs - bitrates: - - 7200 - cod: - opts: ["-max_band", "SWB"] - dec: - tx: - type: "FER" - error_rate: 5 - c17: - type: evs - bitrates: - - 8000 - cod: - opts: ["-max_band", "SWB"] - dec: - tx: - type: "FER" - error_rate: 5 - c18: - type: evs - bitrates: - - 9600 - cod: - opts: ["-max_band", "SWB"] - dec: - tx: - type: "FER" - error_rate: 5 - c19: - type: evs - bitrates: - - 13200 - cod: - opts: ["-max_band", "SWB"] - dec: - tx: - type: "FER" - error_rate: 5 - c20: - type: evs - bitrates: - - 16400 - cod: - opts: ["-max_band", "SWB"] - dec: - tx: - type: "FER" - error_rate: 5 - c21: - type: evs - bitrates: - - 24400 - cod: - opts: ["-max_band", "SWB"] - dec: - tx: - type: "FER" - error_rate: 5 - c22: - type: evs - bitrates: - - 32000 - cod: - opts: ["-max_band", "SWB"] - dec: - tx: - type: "FER" - error_rate: 5 - - c23: - type: evs - bitrates: - - 13200 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - c24: - type: evs - bitrates: - - 8000 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - tx: - type: "FER" - error_rate: 5 - - ### IVAS condition ############################### - c25: - type: ivas - bitrates: - - 13200 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - c26: - type: ivas - bitrates: - - 16400 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - c27: - type: ivas - bitrates: - - 24400 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - c28: - type: ivas - bitrates: - - 32000 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - c29: - type: ivas - bitrates: - - 48000 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - - c30: - type: ivas - bitrates: - - 13200 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - tx: - type: "FER" - error_rate: 5 - c31: - type: ivas - bitrates: - - 16400 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - tx: - type: "FER" - error_rate: 5 - c32: - type: ivas - bitrates: - - 24400 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - tx: - type: "FER" - error_rate: 5 - c33: - type: ivas - bitrates: - - 32000 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - tx: - type: "FER" - error_rate: 5 - c34: - type: ivas - bitrates: - - 48000 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - tx: - type: "FER" - error_rate: 5 - - c35: - type: ivas - bitrates: - - 24400 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - fmt: "STEREO" - c36: - type: ivas - bitrates: - - 13200 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - fmt: "STEREO" - tx: - type: "FER" - error_rate: 5 - -################################################ -### Post-processing -################################################ -postprocessing: - fmt: "STEREO" - fs: 48000 - loudness: -26 diff --git a/experiments/selection/P800-1/config/P800-1-cat4.yml b/experiments/selection/P800-1/config/P800-1.yml similarity index 97% rename from experiments/selection/P800-1/config/P800-1-cat4.yml rename to experiments/selection/P800-1/config/P800-1.yml index 2d3d92b5266cb166a86fd26293fbc0023b911b6c..92ac83b21f529176e37387b595d10ad05189812c 100644 --- a/experiments/selection/P800-1/config/P800-1-cat4.yml +++ b/experiments/selection/P800-1/config/P800-1.yml @@ -7,8 +7,8 @@ name: P800-1 master_seed: 5 prerun_seed: 2 -input_path: "experiments/selection/P800-1/proc_input/cat4" -output_path: "experiments/selection/P800-1/proc_output/cat4" +input_path: "experiments/selection/P800-1/proc_input" +output_path: "experiments/selection/P800-1/proc_output" use_windows_codec_binaries: true condition_in_output_filename: true @@ -41,7 +41,7 @@ preprocessing_2: ### REQUIRED: SNR for background noise in dB snr: 45 ### REQUIRED: Path to background noise, must have same format and sampling rate as input signal(s) - background_noise_path: "experiments/selection/P800-1/background_noise/background_noise_cat4.wav" + background_noise_path: "experiments/selection/P800-1/background_noise/background_noise.wav" ################################################# ### Bitstream processing diff --git a/experiments/selection/P800-2/config/P800-2-cat2.yml b/experiments/selection/P800-2/config/P800-2-cat2.yml deleted file mode 100644 index a5afa1464a1e570253a30ee0328f98933b551767..0000000000000000000000000000000000000000 --- a/experiments/selection/P800-2/config/P800-2-cat2.yml +++ /dev/null @@ -1,289 +0,0 @@ ---- -################################################ -# General configuration -################################################ - -name: P800-2 -master_seed: 5 -prerun_seed: 2 - -input_path: "experiments/selection/P800-2/proc_input/cat2" -output_path: "experiments/selection/P800-2/proc_output/cat2" -use_windows_codec_binaries: true -condition_in_output_filename: true - -################################################ -### Input configuration -################################################ -input: - fmt: "STEREO" - # TODO: to be clarified in Test Plan - fs: 48000 - -################################################ -### Pre-processing on individual items -################################################ -preprocessing: - mask: "HP50" - loudness: -26 - window: 100 - -################################################ -### Pre-processing on whole signal(s) -################################################ -preprocessing_2: - concatenate_input: true - # concatenation_order: [] - preamble: 10000 - preamble_noise: true - ### Additive background noise - background_noise: - ### REQUIRED: SNR for background noise in dB - snr: 15 - ### REQUIRED: Path to background noise, must have same format and sampling rate as input signal(s) - background_noise_path: "experiments/selection/P800-2/background_noise/background_noise_cat2.wav" - -################################################# -### Bitstream processing -################################################# - -################################################ -### Configuration for conditions under test -################################################ -conditions_to_generate: - ### Reference and anchor conditions ########################## - c01: - type: ref - c02: - type: mnru - q: 32 - c03: - type: mnru - q: 27 - c04: - type: mnru - q: 22 - c05: - type: mnru - q: 17 - c06: - type: mnru - q: 12 - c07: - type: esdru - alpha: 0.7 - c08: - type: esdru - alpha: 0.5 - c09: - type: esdru - alpha: 0.3 - c10: - type: esdru - alpha: 0.1 - - ### EVS condition ################################ - c11: - type: evs - bitrates: - - 7200 - cod: - opts: ["-max_band", "SWB"] - dec: - c12: - type: evs - bitrates: - - 8000 - cod: - opts: ["-max_band", "SWB"] - dec: - c13: - type: evs - bitrates: - - 9600 - cod: - opts: ["-max_band", "SWB"] - dec: - c14: - type: evs - bitrates: - - 13200 - cod: - opts: ["-max_band", "SWB"] - dec: - c15: - type: evs - bitrates: - - 16400 - cod: - opts: ["-max_band", "SWB"] - dec: - c16: - type: evs - bitrates: - - 24400 - cod: - opts: ["-max_band", "SWB"] - dec: - c17: - type: evs - bitrates: - - 32000 - cod: - opts: ["-max_band", "SWB"] - dec: - c18: - type: evs - bitrates: - - 48000 - cod: - opts: ["-max_band", "SWB"] - dec: - c19: - type: evs - bitrates: - - 7200 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - c20: - type: evs - bitrates: - - 8000 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - c21: - type: evs - bitrates: - - 9600 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - c22: - type: evs - bitrates: - - 13200 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - c23: - type: evs - bitrates: - - 16400 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - c24: - type: evs - bitrates: - - 24400 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - c25: - type: evs - bitrates: - - 32000 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - - ### IVAS condition ############################### - c26: - type: ivas - bitrates: - - 13200 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - c27: - type: ivas - bitrates: - - 16400 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - c28: - type: ivas - bitrates: - - 24400 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - c29: - type: ivas - bitrates: - - 32000 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - c30: - type: ivas - bitrates: - - 48000 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - c31: - type: ivas - bitrates: - - 64000 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - c32: - type: ivas - bitrates: - - 13200 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - fmt: "STEREO" - c33: - type: ivas - bitrates: - - 16400 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - fmt: "STEREO" - c34: - type: ivas - bitrates: - - 24400 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - fmt: "STEREO" - c35: - type: ivas - bitrates: - - 32000 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - fmt: "STEREO" - c36: - type: ivas - bitrates: - - 48000 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - fmt: "STEREO" - - -################################################ -### Post-processing -################################################ -postprocessing: - fmt: "STEREO" - fs: 48000 - loudness: -26 diff --git a/experiments/selection/P800-2/config/P800-2-cat3.yml b/experiments/selection/P800-2/config/P800-2-cat3.yml deleted file mode 100644 index dc1d2c1aefb49fd602a453c22a3155478a0ee5bd..0000000000000000000000000000000000000000 --- a/experiments/selection/P800-2/config/P800-2-cat3.yml +++ /dev/null @@ -1,289 +0,0 @@ ---- -################################################ -# General configuration -################################################ - -name: P800-2 -master_seed: 5 -prerun_seed: 2 - -input_path: "experiments/selection/P800-2/proc_input/cat3" -output_path: "experiments/selection/P800-2/proc_output/cat3" -use_windows_codec_binaries: true -condition_in_output_filename: true - -################################################ -### Input configuration -################################################ -input: - fmt: "STEREO" - # TODO: to be clarified in Test Plan - fs: 48000 - -################################################ -### Pre-processing on individual items -################################################ -preprocessing: - mask: "HP50" - loudness: -26 - window: 100 - -################################################ -### Pre-processing on whole signal(s) -################################################ -preprocessing_2: - concatenate_input: true - # concatenation_order: [] - preamble: 10000 - preamble_noise: true - ### Additive background noise - background_noise: - ### REQUIRED: SNR for background noise in dB - snr: 15 - ### REQUIRED: Path to background noise, must have same format and sampling rate as input signal(s) - background_noise_path: "experiments/selection/P800-2/background_noise/background_noise_cat3.wav" - -################################################# -### Bitstream processing -################################################# - -################################################ -### Configuration for conditions under test -################################################ -conditions_to_generate: - ### Reference and anchor conditions ########################## - c01: - type: ref - c02: - type: mnru - q: 32 - c03: - type: mnru - q: 27 - c04: - type: mnru - q: 22 - c05: - type: mnru - q: 17 - c06: - type: mnru - q: 12 - c07: - type: esdru - alpha: 0.7 - c08: - type: esdru - alpha: 0.5 - c09: - type: esdru - alpha: 0.3 - c10: - type: esdru - alpha: 0.1 - - ### EVS condition ################################ - c11: - type: evs - bitrates: - - 7200 - cod: - opts: ["-max_band", "SWB"] - dec: - c12: - type: evs - bitrates: - - 8000 - cod: - opts: ["-max_band", "SWB"] - dec: - c13: - type: evs - bitrates: - - 9600 - cod: - opts: ["-max_band", "SWB"] - dec: - c14: - type: evs - bitrates: - - 13200 - cod: - opts: ["-max_band", "SWB"] - dec: - c15: - type: evs - bitrates: - - 16400 - cod: - opts: ["-max_band", "SWB"] - dec: - c16: - type: evs - bitrates: - - 24400 - cod: - opts: ["-max_band", "SWB"] - dec: - c17: - type: evs - bitrates: - - 32000 - cod: - opts: ["-max_band", "SWB"] - dec: - c18: - type: evs - bitrates: - - 48000 - cod: - opts: ["-max_band", "SWB"] - dec: - c19: - type: evs - bitrates: - - 7200 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - c20: - type: evs - bitrates: - - 8000 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - c21: - type: evs - bitrates: - - 9600 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - c22: - type: evs - bitrates: - - 13200 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - c23: - type: evs - bitrates: - - 16400 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - c24: - type: evs - bitrates: - - 24400 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - c25: - type: evs - bitrates: - - 32000 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - - ### IVAS condition ############################### - c26: - type: ivas - bitrates: - - 13200 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - c27: - type: ivas - bitrates: - - 16400 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - c28: - type: ivas - bitrates: - - 24400 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - c29: - type: ivas - bitrates: - - 32000 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - c30: - type: ivas - bitrates: - - 48000 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - c31: - type: ivas - bitrates: - - 64000 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - c32: - type: ivas - bitrates: - - 13200 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - fmt: "STEREO" - c33: - type: ivas - bitrates: - - 16400 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - fmt: "STEREO" - c34: - type: ivas - bitrates: - - 24400 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - fmt: "STEREO" - c35: - type: ivas - bitrates: - - 32000 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - fmt: "STEREO" - c36: - type: ivas - bitrates: - - 48000 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - fmt: "STEREO" - - -################################################ -### Post-processing -################################################ -postprocessing: - fmt: "STEREO" - fs: 48000 - loudness: -26 diff --git a/experiments/selection/P800-2/config/P800-2-cat4.yml b/experiments/selection/P800-2/config/P800-2-cat4.yml deleted file mode 100644 index da34895052b208710191d4cad14f55c81051b53f..0000000000000000000000000000000000000000 --- a/experiments/selection/P800-2/config/P800-2-cat4.yml +++ /dev/null @@ -1,289 +0,0 @@ ---- -################################################ -# General configuration -################################################ - -name: P800-2 -master_seed: 5 -prerun_seed: 2 - -input_path: "experiments/selection/P800-2/proc_input/cat4" -output_path: "experiments/selection/P800-2/proc_output/cat4" -use_windows_codec_binaries: true -condition_in_output_filename: true - -################################################ -### Input configuration -################################################ -input: - fmt: "STEREO" - # TODO: to be clarified in Test Plan - fs: 48000 - -################################################ -### Pre-processing on individual items -################################################ -preprocessing: - mask: "HP50" - loudness: -26 - window: 100 - -################################################ -### Pre-processing on whole signal(s) -################################################ -preprocessing_2: - concatenate_input: true - # concatenation_order: [] - preamble: 10000 - preamble_noise: true - ### Additive background noise - background_noise: - ### REQUIRED: SNR for background noise in dB - snr: 15 - ### REQUIRED: Path to background noise, must have same format and sampling rate as input signal(s) - background_noise_path: "experiments/selection/P800-2/background_noise/background_noise_cat4.wav" - -################################################# -### Bitstream processing -################################################# - -################################################ -### Configuration for conditions under test -################################################ -conditions_to_generate: - ### Reference and anchor conditions ########################## - c01: - type: ref - c02: - type: mnru - q: 32 - c03: - type: mnru - q: 27 - c04: - type: mnru - q: 22 - c05: - type: mnru - q: 17 - c06: - type: mnru - q: 12 - c07: - type: esdru - alpha: 0.7 - c08: - type: esdru - alpha: 0.5 - c09: - type: esdru - alpha: 0.3 - c10: - type: esdru - alpha: 0.1 - - ### EVS condition ################################ - c11: - type: evs - bitrates: - - 7200 - cod: - opts: ["-max_band", "SWB"] - dec: - c12: - type: evs - bitrates: - - 8000 - cod: - opts: ["-max_band", "SWB"] - dec: - c13: - type: evs - bitrates: - - 9600 - cod: - opts: ["-max_band", "SWB"] - dec: - c14: - type: evs - bitrates: - - 13200 - cod: - opts: ["-max_band", "SWB"] - dec: - c15: - type: evs - bitrates: - - 16400 - cod: - opts: ["-max_band", "SWB"] - dec: - c16: - type: evs - bitrates: - - 24400 - cod: - opts: ["-max_band", "SWB"] - dec: - c17: - type: evs - bitrates: - - 32000 - cod: - opts: ["-max_band", "SWB"] - dec: - c18: - type: evs - bitrates: - - 48000 - cod: - opts: ["-max_band", "SWB"] - dec: - c19: - type: evs - bitrates: - - 7200 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - c20: - type: evs - bitrates: - - 8000 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - c21: - type: evs - bitrates: - - 9600 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - c22: - type: evs - bitrates: - - 13200 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - c23: - type: evs - bitrates: - - 16400 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - c24: - type: evs - bitrates: - - 24400 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - c25: - type: evs - bitrates: - - 32000 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - - ### IVAS condition ############################### - c26: - type: ivas - bitrates: - - 13200 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - c27: - type: ivas - bitrates: - - 16400 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - c28: - type: ivas - bitrates: - - 24400 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - c29: - type: ivas - bitrates: - - 32000 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - c30: - type: ivas - bitrates: - - 48000 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - c31: - type: ivas - bitrates: - - 64000 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - c32: - type: ivas - bitrates: - - 13200 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - fmt: "STEREO" - c33: - type: ivas - bitrates: - - 16400 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - fmt: "STEREO" - c34: - type: ivas - bitrates: - - 24400 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - fmt: "STEREO" - c35: - type: ivas - bitrates: - - 32000 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - fmt: "STEREO" - c36: - type: ivas - bitrates: - - 48000 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - fmt: "STEREO" - - -################################################ -### Post-processing -################################################ -postprocessing: - fmt: "STEREO" - fs: 48000 - loudness: -26 diff --git a/experiments/selection/P800-2/config/P800-2-cat5.yml b/experiments/selection/P800-2/config/P800-2-cat5.yml deleted file mode 100644 index fe88b1ac01a1305fca91c99b8fec0140624a3ad5..0000000000000000000000000000000000000000 --- a/experiments/selection/P800-2/config/P800-2-cat5.yml +++ /dev/null @@ -1,289 +0,0 @@ ---- -################################################ -# General configuration -################################################ - -name: P800-2 -master_seed: 5 -prerun_seed: 2 - -input_path: "experiments/selection/P800-2/proc_input/cat5" -output_path: "experiments/selection/P800-2/proc_output/cat5" -use_windows_codec_binaries: true -condition_in_output_filename: true - -################################################ -### Input configuration -################################################ -input: - fmt: "STEREO" - # TODO: to be clarified in Test Plan - fs: 48000 - -################################################ -### Pre-processing on individual items -################################################ -preprocessing: - mask: "HP50" - loudness: -26 - window: 100 - -################################################ -### Pre-processing on whole signal(s) -################################################ -preprocessing_2: - concatenate_input: true - # concatenation_order: [] - preamble: 10000 - preamble_noise: true - ### Additive background noise - background_noise: - ### REQUIRED: SNR for background noise in dB - snr: 15 - ### REQUIRED: Path to background noise, must have same format and sampling rate as input signal(s) - background_noise_path: "experiments/selection/P800-2/background_noise/background_noise_cat5.wav" - -################################################# -### Bitstream processing -################################################# - -################################################ -### Configuration for conditions under test -################################################ -conditions_to_generate: - ### Reference and anchor conditions ########################## - c01: - type: ref - c02: - type: mnru - q: 32 - c03: - type: mnru - q: 27 - c04: - type: mnru - q: 22 - c05: - type: mnru - q: 17 - c06: - type: mnru - q: 12 - c07: - type: esdru - alpha: 0.7 - c08: - type: esdru - alpha: 0.5 - c09: - type: esdru - alpha: 0.3 - c10: - type: esdru - alpha: 0.1 - - ### EVS condition ################################ - c11: - type: evs - bitrates: - - 7200 - cod: - opts: ["-max_band", "SWB"] - dec: - c12: - type: evs - bitrates: - - 8000 - cod: - opts: ["-max_band", "SWB"] - dec: - c13: - type: evs - bitrates: - - 9600 - cod: - opts: ["-max_band", "SWB"] - dec: - c14: - type: evs - bitrates: - - 13200 - cod: - opts: ["-max_band", "SWB"] - dec: - c15: - type: evs - bitrates: - - 16400 - cod: - opts: ["-max_band", "SWB"] - dec: - c16: - type: evs - bitrates: - - 24400 - cod: - opts: ["-max_band", "SWB"] - dec: - c17: - type: evs - bitrates: - - 32000 - cod: - opts: ["-max_band", "SWB"] - dec: - c18: - type: evs - bitrates: - - 48000 - cod: - opts: ["-max_band", "SWB"] - dec: - c19: - type: evs - bitrates: - - 7200 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - c20: - type: evs - bitrates: - - 8000 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - c21: - type: evs - bitrates: - - 9600 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - c22: - type: evs - bitrates: - - 13200 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - c23: - type: evs - bitrates: - - 16400 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - c24: - type: evs - bitrates: - - 24400 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - c25: - type: evs - bitrates: - - 32000 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - - ### IVAS condition ############################### - c26: - type: ivas - bitrates: - - 13200 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - c27: - type: ivas - bitrates: - - 16400 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - c28: - type: ivas - bitrates: - - 24400 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - c29: - type: ivas - bitrates: - - 32000 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - c30: - type: ivas - bitrates: - - 48000 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - c31: - type: ivas - bitrates: - - 64000 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - c32: - type: ivas - bitrates: - - 13200 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - fmt: "STEREO" - c33: - type: ivas - bitrates: - - 16400 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - fmt: "STEREO" - c34: - type: ivas - bitrates: - - 24400 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - fmt: "STEREO" - c35: - type: ivas - bitrates: - - 32000 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - fmt: "STEREO" - c36: - type: ivas - bitrates: - - 48000 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - fmt: "STEREO" - - -################################################ -### Post-processing -################################################ -postprocessing: - fmt: "STEREO" - fs: 48000 - loudness: -26 diff --git a/experiments/selection/P800-2/config/P800-2-cat6.yml b/experiments/selection/P800-2/config/P800-2-cat6.yml deleted file mode 100644 index baf1c8dff538c7867a08532d658d040e27bc0f63..0000000000000000000000000000000000000000 --- a/experiments/selection/P800-2/config/P800-2-cat6.yml +++ /dev/null @@ -1,289 +0,0 @@ ---- -################################################ -# General configuration -################################################ - -name: P800-2 -master_seed: 5 -prerun_seed: 2 - -input_path: "experiments/selection/P800-2/proc_input/cat6" -output_path: "experiments/selection/P800-2/proc_output/cat6" -use_windows_codec_binaries: true -condition_in_output_filename: true - -################################################ -### Input configuration -################################################ -input: - fmt: "STEREO" - # TODO: to be clarified in Test Plan - fs: 48000 - -################################################ -### Pre-processing on individual items -################################################ -preprocessing: - mask: "HP50" - loudness: -26 - window: 100 - -################################################ -### Pre-processing on whole signal(s) -################################################ -preprocessing_2: - concatenate_input: true - # concatenation_order: [] - preamble: 10000 - preamble_noise: true - ### Additive background noise - background_noise: - ### REQUIRED: SNR for background noise in dB - snr: 15 - ### REQUIRED: Path to background noise, must have same format and sampling rate as input signal(s) - background_noise_path: "experiments/selection/P800-2/background_noise/background_noise_cat6.wav" - -################################################# -### Bitstream processing -################################################# - -################################################ -### Configuration for conditions under test -################################################ -conditions_to_generate: - ### Reference and anchor conditions ########################## - c01: - type: ref - c02: - type: mnru - q: 32 - c03: - type: mnru - q: 27 - c04: - type: mnru - q: 22 - c05: - type: mnru - q: 17 - c06: - type: mnru - q: 12 - c07: - type: esdru - alpha: 0.7 - c08: - type: esdru - alpha: 0.5 - c09: - type: esdru - alpha: 0.3 - c10: - type: esdru - alpha: 0.1 - - ### EVS condition ################################ - c11: - type: evs - bitrates: - - 7200 - cod: - opts: ["-max_band", "SWB"] - dec: - c12: - type: evs - bitrates: - - 8000 - cod: - opts: ["-max_band", "SWB"] - dec: - c13: - type: evs - bitrates: - - 9600 - cod: - opts: ["-max_band", "SWB"] - dec: - c14: - type: evs - bitrates: - - 13200 - cod: - opts: ["-max_band", "SWB"] - dec: - c15: - type: evs - bitrates: - - 16400 - cod: - opts: ["-max_band", "SWB"] - dec: - c16: - type: evs - bitrates: - - 24400 - cod: - opts: ["-max_band", "SWB"] - dec: - c17: - type: evs - bitrates: - - 32000 - cod: - opts: ["-max_band", "SWB"] - dec: - c18: - type: evs - bitrates: - - 48000 - cod: - opts: ["-max_band", "SWB"] - dec: - c19: - type: evs - bitrates: - - 7200 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - c20: - type: evs - bitrates: - - 8000 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - c21: - type: evs - bitrates: - - 9600 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - c22: - type: evs - bitrates: - - 13200 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - c23: - type: evs - bitrates: - - 16400 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - c24: - type: evs - bitrates: - - 24400 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - c25: - type: evs - bitrates: - - 32000 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - - ### IVAS condition ############################### - c26: - type: ivas - bitrates: - - 13200 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - c27: - type: ivas - bitrates: - - 16400 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - c28: - type: ivas - bitrates: - - 24400 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - c29: - type: ivas - bitrates: - - 32000 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - c30: - type: ivas - bitrates: - - 48000 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - c31: - type: ivas - bitrates: - - 64000 - cod: - opts: ["-max_band", "SWB"] - dec: - fmt: "STEREO" - c32: - type: ivas - bitrates: - - 13200 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - fmt: "STEREO" - c33: - type: ivas - bitrates: - - 16400 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - fmt: "STEREO" - c34: - type: ivas - bitrates: - - 24400 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - fmt: "STEREO" - c35: - type: ivas - bitrates: - - 32000 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - fmt: "STEREO" - c36: - type: ivas - bitrates: - - 48000 - cod: - opts: ["-dtx", "-max_band", "SWB"] - dec: - fmt: "STEREO" - - -################################################ -### Post-processing -################################################ -postprocessing: - fmt: "STEREO" - fs: 48000 - loudness: -26 diff --git a/experiments/selection/P800-2/config/P800-2-cat1.yml b/experiments/selection/P800-2/config/P800-2.yml similarity index 97% rename from experiments/selection/P800-2/config/P800-2-cat1.yml rename to experiments/selection/P800-2/config/P800-2.yml index 1b0fdbfb29e8c8fbf7ae959049592c7286c0449f..740eb3b045856a24d0660f4b8e73c19f97c3102a 100644 --- a/experiments/selection/P800-2/config/P800-2-cat1.yml +++ b/experiments/selection/P800-2/config/P800-2.yml @@ -7,8 +7,8 @@ name: P800-2 master_seed: 5 prerun_seed: 2 -input_path: "experiments/selection/P800-2/proc_input/cat1" -output_path: "experiments/selection/P800-2/proc_output/cat1" +input_path: "experiments/selection/P800-2/proc_input" +output_path: "experiments/selection/P800-2/proc_output" use_windows_codec_binaries: true condition_in_output_filename: true @@ -41,7 +41,7 @@ preprocessing_2: ### REQUIRED: SNR for background noise in dB snr: 15 ### REQUIRED: Path to background noise, must have same format and sampling rate as input signal(s) - background_noise_path: "experiments/selection/P800-2/background_noise/background_noise_cat1.wav" + background_noise_path: "experiments/selection/P800-2/background_noise/background_noise.wav" repeat_signal: true ################################################# diff --git a/experiments/selection/P800-2/proc_output/cat5/.gitkeep b/experiments/selection/P800-2/proc_output/cat5/.gitkeep deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/experiments/selection/P800-2/proc_output/cat6/.gitkeep b/experiments/selection/P800-2/proc_output/cat6/.gitkeep deleted file mode 100644 index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..0000000000000000000000000000000000000000 diff --git a/experiments/selection/P800-3/config/P800-3-cat1.yml b/experiments/selection/P800-3/config/P800-3-cat1.yml deleted file mode 100644 index b6b5349c64efdfe3091439d439ea27f32007b251..0000000000000000000000000000000000000000 --- a/experiments/selection/P800-3/config/P800-3-cat1.yml +++ /dev/null @@ -1,323 +0,0 @@ ---- -################################################ -# General configuration -################################################ - -name: P800-3 -master_seed: 5 -prerun_seed: 2 - -input_path: "experiments/selection/P800-3/proc_input/cat1" -output_path: "experiments/selection/P800-3/proc_output/cat1" -use_windows_codec_binaries: true -condition_in_output_filename: true - -################################################ -### Input configuration -################################################ -input: - fmt: "STEREO" - -################################################ -### Pre-processing on individual items -################################################ -preprocessing: - mask: "20KBP" - loudness: -26 - window: 100 - -################################################ -### Pre-processing on whole signal(s) -################################################ -preprocessing_2: - concatenate_input: true - # concatenation_order: [] - preamble: 10000 - preamble_noise: true - repeat_signal: true - -################################################# -### Bitstream processing -################################################# - -################################################ -### Configuration for conditions under test -################################################ -conditions_to_generate: - ### Reference and anchor conditions ########################## - c01: - type: ref - c02: - type: mnru - q: 27 - c03: - type: mnru - q: 22 - c04: - type: mnru - q: 17 - c05: - type: mnru - q: 12 - c06: - type: esdru - alpha: 0.7 - c07: - type: esdru - alpha: 0.4 - c08: - type: esdru - alpha: 0.1 - - ### EVS condition ################################ - c09: - type: evs - bitrates: - - 7200 - cod: - opts: ["-max_band", "FB"] - dec: - c10: - type: evs - bitrates: - - 8000 - cod: - opts: ["-max_band", "FB"] - dec: - c11: - type: evs - bitrates: - - 9600 - cod: - opts: ["-max_band", "FB"] - dec: - c12: - type: evs - bitrates: - - 13200 - cod: - opts: ["-max_band", "FB"] - dec: - c13: - type: evs - bitrates: - - 16400 - cod: - opts: ["-max_band", "FB"] - dec: - c14: - type: evs - bitrates: - - 24400 - cod: - opts: ["-max_band", "FB"] - dec: - c15: - type: evs - bitrates: - - 32000 - cod: - opts: ["-max_band", "FB"] - dec: - c16: - type: evs - bitrates: - - 48000 - cod: - opts: ["-max_band", "FB"] - dec: - - c17: - type: evs - bitrates: - - 7200 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c18: - type: evs - bitrates: - - 8000 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c19: - type: evs - bitrates: - - 9600 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c20: - type: evs - bitrates: - - 13200 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c21: - type: evs - bitrates: - - 16400 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c22: - type: evs - bitrates: - - 24400 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c23: - type: evs - bitrates: - - 32000 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - - ### IVAS condition ############################### - c24: - type: ivas - bitrates: - - 13200 - cod: - dec: - fmt: "STEREO" - c25: - type: ivas - bitrates: - - 16400 - cod: - dec: - fmt: "STEREO" - c26: - type: ivas - bitrates: - - 24400 - cod: - dec: - fmt: "STEREO" - c27: - type: ivas - bitrates: - - 32000 - cod: - dec: - fmt: "STEREO" - c28: - type: ivas - bitrates: - - 48000 - cod: - dec: - fmt: "STEREO" - c29: - type: ivas - bitrates: - - 64000 - cod: - dec: - fmt: "STEREO" - - c30: - type: ivas - bitrates: - - 13200 - cod: - dec: - fmt: "STEREO" - tx: - type: "FER" - error_rate: 5 - c31: - type: ivas - bitrates: - - 16400 - cod: - dec: - fmt: "STEREO" - tx: - type: "FER" - error_rate: 5 - c32: - type: ivas - bitrates: - - 24400 - cod: - dec: - fmt: "STEREO" - tx: - type: "FER" - error_rate: 5 - c33: - type: ivas - bitrates: - - 32000 - cod: - dec: - fmt: "STEREO" - tx: - type: "FER" - error_rate: 5 - c34: - type: ivas - bitrates: - - 48000 - cod: - dec: - fmt: "STEREO" - tx: - type: "FER" - error_rate: 5 - - c35: - type: ivas - bitrates: - - 24400 - cod: - opts: ["-dtx"] - dec: - fmt: "STEREO" - - c36: - type: ivas - bitrates: - - 13200 - cod: - opts: ["-dtx"] - dec: - fmt: "STEREO" - tx: - type: "FER" - error_rate: 5 - -################################################ -### Post-processing -################################################ -postprocessing: - fmt: "STEREO" - fs: 48000 - loudness: -26 diff --git a/experiments/selection/P800-3/config/P800-3-cat2.yml b/experiments/selection/P800-3/config/P800-3-cat2.yml deleted file mode 100644 index 73e8abe80f7ed64a9df478c8c09f15b0d195ff96..0000000000000000000000000000000000000000 --- a/experiments/selection/P800-3/config/P800-3-cat2.yml +++ /dev/null @@ -1,323 +0,0 @@ ---- -################################################ -# General configuration -################################################ - -name: P800-3 -master_seed: 5 -prerun_seed: 2 - -input_path: "experiments/selection/P800-3/proc_input/cat2" -output_path: "experiments/selection/P800-3/proc_output/cat2" -use_windows_codec_binaries: true -condition_in_output_filename: true - -################################################ -### Input configuration -################################################ -input: - fmt: "STEREO" - -################################################ -### Pre-processing on individual items -################################################ -preprocessing: - mask: "20KBP" - loudness: -26 - window: 100 - -################################################ -### Pre-processing on whole signal(s) -################################################ -preprocessing_2: - concatenate_input: true - # concatenation_order: [] - preamble: 10000 - preamble_noise: true - repeat_signal: true - -################################################# -### Bitstream processing -################################################# - -################################################ -### Configuration for conditions under test -################################################ -conditions_to_generate: - ### Reference and anchor conditions ########################## - c01: - type: ref - c02: - type: mnru - q: 27 - c03: - type: mnru - q: 22 - c04: - type: mnru - q: 17 - c05: - type: mnru - q: 12 - c06: - type: esdru - alpha: 0.7 - c07: - type: esdru - alpha: 0.4 - c08: - type: esdru - alpha: 0.1 - - ### EVS condition ################################ - c09: - type: evs - bitrates: - - 7200 - cod: - opts: ["-max_band", "FB"] - dec: - c10: - type: evs - bitrates: - - 8000 - cod: - opts: ["-max_band", "FB"] - dec: - c11: - type: evs - bitrates: - - 9600 - cod: - opts: ["-max_band", "FB"] - dec: - c12: - type: evs - bitrates: - - 13200 - cod: - opts: ["-max_band", "FB"] - dec: - c13: - type: evs - bitrates: - - 16400 - cod: - opts: ["-max_band", "FB"] - dec: - c14: - type: evs - bitrates: - - 24400 - cod: - opts: ["-max_band", "FB"] - dec: - c15: - type: evs - bitrates: - - 32000 - cod: - opts: ["-max_band", "FB"] - dec: - c16: - type: evs - bitrates: - - 48000 - cod: - opts: ["-max_band", "FB"] - dec: - - c17: - type: evs - bitrates: - - 7200 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c18: - type: evs - bitrates: - - 8000 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c19: - type: evs - bitrates: - - 9600 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c20: - type: evs - bitrates: - - 13200 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c21: - type: evs - bitrates: - - 16400 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c22: - type: evs - bitrates: - - 24400 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c23: - type: evs - bitrates: - - 32000 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - - ### IVAS condition ############################### - c24: - type: ivas - bitrates: - - 13200 - cod: - dec: - fmt: "STEREO" - c25: - type: ivas - bitrates: - - 16400 - cod: - dec: - fmt: "STEREO" - c26: - type: ivas - bitrates: - - 24400 - cod: - dec: - fmt: "STEREO" - c27: - type: ivas - bitrates: - - 32000 - cod: - dec: - fmt: "STEREO" - c28: - type: ivas - bitrates: - - 48000 - cod: - dec: - fmt: "STEREO" - c29: - type: ivas - bitrates: - - 64000 - cod: - dec: - fmt: "STEREO" - - c30: - type: ivas - bitrates: - - 13200 - cod: - dec: - fmt: "STEREO" - tx: - type: "FER" - error_rate: 5 - c31: - type: ivas - bitrates: - - 16400 - cod: - dec: - fmt: "STEREO" - tx: - type: "FER" - error_rate: 5 - c32: - type: ivas - bitrates: - - 24400 - cod: - dec: - fmt: "STEREO" - tx: - type: "FER" - error_rate: 5 - c33: - type: ivas - bitrates: - - 32000 - cod: - dec: - fmt: "STEREO" - tx: - type: "FER" - error_rate: 5 - c34: - type: ivas - bitrates: - - 48000 - cod: - dec: - fmt: "STEREO" - tx: - type: "FER" - error_rate: 5 - - c35: - type: ivas - bitrates: - - 24400 - cod: - opts: ["-dtx"] - dec: - fmt: "STEREO" - - c36: - type: ivas - bitrates: - - 13200 - cod: - opts: ["-dtx"] - dec: - fmt: "STEREO" - tx: - type: "FER" - error_rate: 5 - -################################################ -### Post-processing -################################################ -postprocessing: - fmt: "STEREO" - fs: 48000 - loudness: -26 diff --git a/experiments/selection/P800-3/config/P800-3-cat3.yml b/experiments/selection/P800-3/config/P800-3-cat3.yml deleted file mode 100644 index bbfcc3c819c53d06265c4c6e4cfc91b3df98a187..0000000000000000000000000000000000000000 --- a/experiments/selection/P800-3/config/P800-3-cat3.yml +++ /dev/null @@ -1,323 +0,0 @@ ---- -################################################ -# General configuration -################################################ - -name: P800-3 -master_seed: 5 -prerun_seed: 2 - -input_path: "experiments/selection/P800-3/proc_input/cat3" -output_path: "experiments/selection/P800-3/proc_output/cat3" -use_windows_codec_binaries: true -condition_in_output_filename: true - -################################################ -### Input configuration -################################################ -input: - fmt: "STEREO" - -################################################ -### Pre-processing on individual items -################################################ -preprocessing: - mask: "20KBP" - loudness: -26 - window: 100 - -################################################ -### Pre-processing on whole signal(s) -################################################ -preprocessing_2: - concatenate_input: true - # concatenation_order: [] - preamble: 10000 - preamble_noise: true - repeat_signal: true - -################################################# -### Bitstream processing -################################################# - -################################################ -### Configuration for conditions under test -################################################ -conditions_to_generate: - ### Reference and anchor conditions ########################## - c01: - type: ref - c02: - type: mnru - q: 27 - c03: - type: mnru - q: 22 - c04: - type: mnru - q: 17 - c05: - type: mnru - q: 12 - c06: - type: esdru - alpha: 0.7 - c07: - type: esdru - alpha: 0.4 - c08: - type: esdru - alpha: 0.1 - - ### EVS condition ################################ - c09: - type: evs - bitrates: - - 7200 - cod: - opts: ["-max_band", "FB"] - dec: - c10: - type: evs - bitrates: - - 8000 - cod: - opts: ["-max_band", "FB"] - dec: - c11: - type: evs - bitrates: - - 9600 - cod: - opts: ["-max_band", "FB"] - dec: - c12: - type: evs - bitrates: - - 13200 - cod: - opts: ["-max_band", "FB"] - dec: - c13: - type: evs - bitrates: - - 16400 - cod: - opts: ["-max_band", "FB"] - dec: - c14: - type: evs - bitrates: - - 24400 - cod: - opts: ["-max_band", "FB"] - dec: - c15: - type: evs - bitrates: - - 32000 - cod: - opts: ["-max_band", "FB"] - dec: - c16: - type: evs - bitrates: - - 48000 - cod: - opts: ["-max_band", "FB"] - dec: - - c17: - type: evs - bitrates: - - 7200 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c18: - type: evs - bitrates: - - 8000 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c19: - type: evs - bitrates: - - 9600 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c20: - type: evs - bitrates: - - 13200 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c21: - type: evs - bitrates: - - 16400 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c22: - type: evs - bitrates: - - 24400 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c23: - type: evs - bitrates: - - 32000 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - - ### IVAS condition ############################### - c24: - type: ivas - bitrates: - - 13200 - cod: - dec: - fmt: "STEREO" - c25: - type: ivas - bitrates: - - 16400 - cod: - dec: - fmt: "STEREO" - c26: - type: ivas - bitrates: - - 24400 - cod: - dec: - fmt: "STEREO" - c27: - type: ivas - bitrates: - - 32000 - cod: - dec: - fmt: "STEREO" - c28: - type: ivas - bitrates: - - 48000 - cod: - dec: - fmt: "STEREO" - c29: - type: ivas - bitrates: - - 64000 - cod: - dec: - fmt: "STEREO" - - c30: - type: ivas - bitrates: - - 13200 - cod: - dec: - fmt: "STEREO" - tx: - type: "FER" - error_rate: 5 - c31: - type: ivas - bitrates: - - 16400 - cod: - dec: - fmt: "STEREO" - tx: - type: "FER" - error_rate: 5 - c32: - type: ivas - bitrates: - - 24400 - cod: - dec: - fmt: "STEREO" - tx: - type: "FER" - error_rate: 5 - c33: - type: ivas - bitrates: - - 32000 - cod: - dec: - fmt: "STEREO" - tx: - type: "FER" - error_rate: 5 - c34: - type: ivas - bitrates: - - 48000 - cod: - dec: - fmt: "STEREO" - tx: - type: "FER" - error_rate: 5 - - c35: - type: ivas - bitrates: - - 24400 - cod: - opts: ["-dtx"] - dec: - fmt: "STEREO" - - c36: - type: ivas - bitrates: - - 13200 - cod: - opts: ["-dtx"] - dec: - fmt: "STEREO" - tx: - type: "FER" - error_rate: 5 - -################################################ -### Post-processing -################################################ -postprocessing: - fmt: "STEREO" - fs: 48000 - loudness: -26 diff --git a/experiments/selection/P800-3/config/P800-3-cat5.yml b/experiments/selection/P800-3/config/P800-3-cat5.yml deleted file mode 100644 index 470d63f76f0d63c5fea06ad197e45488069b49a7..0000000000000000000000000000000000000000 --- a/experiments/selection/P800-3/config/P800-3-cat5.yml +++ /dev/null @@ -1,323 +0,0 @@ ---- -################################################ -# General configuration -################################################ - -name: P800-3 -master_seed: 5 -prerun_seed: 2 - -input_path: "experiments/selection/P800-3/proc_input/cat5" -output_path: "experiments/selection/P800-3/proc_output/cat5" -use_windows_codec_binaries: true -condition_in_output_filename: true - -################################################ -### Input configuration -################################################ -input: - fmt: "STEREO" - -################################################ -### Pre-processing on individual items -################################################ -preprocessing: - mask: "20KBP" - loudness: -26 - window: 100 - -################################################ -### Pre-processing on whole signal(s) -################################################ -preprocessing_2: - concatenate_input: true - # concatenation_order: [] - preamble: 10000 - preamble_noise: true - repeat_signal: true - -################################################# -### Bitstream processing -################################################# - -################################################ -### Configuration for conditions under test -################################################ -conditions_to_generate: - ### Reference and anchor conditions ########################## - c01: - type: ref - c02: - type: mnru - q: 27 - c03: - type: mnru - q: 22 - c04: - type: mnru - q: 17 - c05: - type: mnru - q: 12 - c06: - type: esdru - alpha: 0.7 - c07: - type: esdru - alpha: 0.4 - c08: - type: esdru - alpha: 0.1 - - ### EVS condition ################################ - c09: - type: evs - bitrates: - - 7200 - cod: - opts: ["-max_band", "FB"] - dec: - c10: - type: evs - bitrates: - - 8000 - cod: - opts: ["-max_band", "FB"] - dec: - c11: - type: evs - bitrates: - - 9600 - cod: - opts: ["-max_band", "FB"] - dec: - c12: - type: evs - bitrates: - - 13200 - cod: - opts: ["-max_band", "FB"] - dec: - c13: - type: evs - bitrates: - - 16400 - cod: - opts: ["-max_band", "FB"] - dec: - c14: - type: evs - bitrates: - - 24400 - cod: - opts: ["-max_band", "FB"] - dec: - c15: - type: evs - bitrates: - - 32000 - cod: - opts: ["-max_band", "FB"] - dec: - c16: - type: evs - bitrates: - - 48000 - cod: - opts: ["-max_band", "FB"] - dec: - - c17: - type: evs - bitrates: - - 7200 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c18: - type: evs - bitrates: - - 8000 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c19: - type: evs - bitrates: - - 9600 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c20: - type: evs - bitrates: - - 13200 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c21: - type: evs - bitrates: - - 16400 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c22: - type: evs - bitrates: - - 24400 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c23: - type: evs - bitrates: - - 32000 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - - ### IVAS condition ############################### - c24: - type: ivas - bitrates: - - 13200 - cod: - dec: - fmt: "STEREO" - c25: - type: ivas - bitrates: - - 16400 - cod: - dec: - fmt: "STEREO" - c26: - type: ivas - bitrates: - - 24400 - cod: - dec: - fmt: "STEREO" - c27: - type: ivas - bitrates: - - 32000 - cod: - dec: - fmt: "STEREO" - c28: - type: ivas - bitrates: - - 48000 - cod: - dec: - fmt: "STEREO" - c29: - type: ivas - bitrates: - - 64000 - cod: - dec: - fmt: "STEREO" - - c30: - type: ivas - bitrates: - - 13200 - cod: - dec: - fmt: "STEREO" - tx: - type: "FER" - error_rate: 5 - c31: - type: ivas - bitrates: - - 16400 - cod: - dec: - fmt: "STEREO" - tx: - type: "FER" - error_rate: 5 - c32: - type: ivas - bitrates: - - 24400 - cod: - dec: - fmt: "STEREO" - tx: - type: "FER" - error_rate: 5 - c33: - type: ivas - bitrates: - - 32000 - cod: - dec: - fmt: "STEREO" - tx: - type: "FER" - error_rate: 5 - c34: - type: ivas - bitrates: - - 48000 - cod: - dec: - fmt: "STEREO" - tx: - type: "FER" - error_rate: 5 - - c35: - type: ivas - bitrates: - - 24400 - cod: - opts: ["-dtx"] - dec: - fmt: "STEREO" - - c36: - type: ivas - bitrates: - - 13200 - cod: - opts: ["-dtx"] - dec: - fmt: "STEREO" - tx: - type: "FER" - error_rate: 5 - -################################################ -### Post-processing -################################################ -postprocessing: - fmt: "STEREO" - fs: 48000 - loudness: -26 diff --git a/experiments/selection/P800-3/config/P800-3-cat6.yml b/experiments/selection/P800-3/config/P800-3-cat6.yml deleted file mode 100644 index 19d3792ab05c4065215bb32be8b9da790ca7a1e7..0000000000000000000000000000000000000000 --- a/experiments/selection/P800-3/config/P800-3-cat6.yml +++ /dev/null @@ -1,323 +0,0 @@ ---- -################################################ -# General configuration -################################################ - -name: P800-3 -master_seed: 5 -prerun_seed: 2 - -input_path: "experiments/selection/P800-3/proc_input/cat6" -output_path: "experiments/selection/P800-3/proc_output/cat6" -use_windows_codec_binaries: true -condition_in_output_filename: true - -################################################ -### Input configuration -################################################ -input: - fmt: "STEREO" - -################################################ -### Pre-processing on individual items -################################################ -preprocessing: - mask: "20KBP" - loudness: -26 - window: 100 - -################################################ -### Pre-processing on whole signal(s) -################################################ -preprocessing_2: - concatenate_input: true - # concatenation_order: [] - preamble: 10000 - preamble_noise: true - repeat_signal: true - -################################################# -### Bitstream processing -################################################# - -################################################ -### Configuration for conditions under test -################################################ -conditions_to_generate: - ### Reference and anchor conditions ########################## - c01: - type: ref - c02: - type: mnru - q: 27 - c03: - type: mnru - q: 22 - c04: - type: mnru - q: 17 - c05: - type: mnru - q: 12 - c06: - type: esdru - alpha: 0.7 - c07: - type: esdru - alpha: 0.4 - c08: - type: esdru - alpha: 0.1 - - ### EVS condition ################################ - c09: - type: evs - bitrates: - - 7200 - cod: - opts: ["-max_band", "FB"] - dec: - c10: - type: evs - bitrates: - - 8000 - cod: - opts: ["-max_band", "FB"] - dec: - c11: - type: evs - bitrates: - - 9600 - cod: - opts: ["-max_band", "FB"] - dec: - c12: - type: evs - bitrates: - - 13200 - cod: - opts: ["-max_band", "FB"] - dec: - c13: - type: evs - bitrates: - - 16400 - cod: - opts: ["-max_band", "FB"] - dec: - c14: - type: evs - bitrates: - - 24400 - cod: - opts: ["-max_band", "FB"] - dec: - c15: - type: evs - bitrates: - - 32000 - cod: - opts: ["-max_band", "FB"] - dec: - c16: - type: evs - bitrates: - - 48000 - cod: - opts: ["-max_band", "FB"] - dec: - - c17: - type: evs - bitrates: - - 7200 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c18: - type: evs - bitrates: - - 8000 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c19: - type: evs - bitrates: - - 9600 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c20: - type: evs - bitrates: - - 13200 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c21: - type: evs - bitrates: - - 16400 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c22: - type: evs - bitrates: - - 24400 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c23: - type: evs - bitrates: - - 32000 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - - ### IVAS condition ############################### - c24: - type: ivas - bitrates: - - 13200 - cod: - dec: - fmt: "STEREO" - c25: - type: ivas - bitrates: - - 16400 - cod: - dec: - fmt: "STEREO" - c26: - type: ivas - bitrates: - - 24400 - cod: - dec: - fmt: "STEREO" - c27: - type: ivas - bitrates: - - 32000 - cod: - dec: - fmt: "STEREO" - c28: - type: ivas - bitrates: - - 48000 - cod: - dec: - fmt: "STEREO" - c29: - type: ivas - bitrates: - - 64000 - cod: - dec: - fmt: "STEREO" - - c30: - type: ivas - bitrates: - - 13200 - cod: - dec: - fmt: "STEREO" - tx: - type: "FER" - error_rate: 5 - c31: - type: ivas - bitrates: - - 16400 - cod: - dec: - fmt: "STEREO" - tx: - type: "FER" - error_rate: 5 - c32: - type: ivas - bitrates: - - 24400 - cod: - dec: - fmt: "STEREO" - tx: - type: "FER" - error_rate: 5 - c33: - type: ivas - bitrates: - - 32000 - cod: - dec: - fmt: "STEREO" - tx: - type: "FER" - error_rate: 5 - c34: - type: ivas - bitrates: - - 48000 - cod: - dec: - fmt: "STEREO" - tx: - type: "FER" - error_rate: 5 - - c35: - type: ivas - bitrates: - - 24400 - cod: - opts: ["-dtx"] - dec: - fmt: "STEREO" - - c36: - type: ivas - bitrates: - - 13200 - cod: - opts: ["-dtx"] - dec: - fmt: "STEREO" - tx: - type: "FER" - error_rate: 5 - -################################################ -### Post-processing -################################################ -postprocessing: - fmt: "STEREO" - fs: 48000 - loudness: -26 diff --git a/experiments/selection/P800-3/config/P800-3-cat4.yml b/experiments/selection/P800-3/config/P800-3.yml similarity index 97% rename from experiments/selection/P800-3/config/P800-3-cat4.yml rename to experiments/selection/P800-3/config/P800-3.yml index 6837e7c698bfa0e40bd87d1da82edc4c55ea6095..0b454c00901c17aa3c0650a481a546c0ed86e641 100644 --- a/experiments/selection/P800-3/config/P800-3-cat4.yml +++ b/experiments/selection/P800-3/config/P800-3.yml @@ -7,8 +7,8 @@ name: P800-3 master_seed: 5 prerun_seed: 2 -input_path: "experiments/selection/P800-3/proc_input/cat4" -output_path: "experiments/selection/P800-3/proc_output/cat4" +input_path: "experiments/selection/P800-3/proc_input" +output_path: "experiments/selection/P800-3/proc_output" use_windows_codec_binaries: true condition_in_output_filename: true diff --git a/experiments/selection/P800-4/config/P800-4-cat2.yml b/experiments/selection/P800-4/config/P800-4-cat2.yml deleted file mode 100644 index 6cab546921a3b6c72b6ff389c15d13f7151d318f..0000000000000000000000000000000000000000 --- a/experiments/selection/P800-4/config/P800-4-cat2.yml +++ /dev/null @@ -1,342 +0,0 @@ ---- -################################################ -# General configuration -################################################ - -name: P800-4 -master_seed: 5 -prerun_seed: 2 - -input_path: "experiments/selection/P800-4/proc_input/cat2" -output_path: "experiments/selection/P800-4/proc_output/cat2" -use_windows_codec_binaries: true -condition_in_output_filename: true - -################################################ -### Input configuration -################################################ -input: - fmt: "FOA" - # TODO: to be clarified in Test Plan - fs: 48000 - -################################################ -### Pre-processing on individual items -################################################ -preprocessing: - mask: "HP50" - loudness: -26 - loudness_fmt: "BINAURAL" - window: 100 - -################################################ -### Pre-processing on whole signal(s) -################################################ -preprocessing_2: - concatenate_input: true - # concatenation_order: [] - preamble: 10000 - preamble_noise: true - repeat_signal: true - background_noise: - ### REQUIRED: SNR for background noise in dB - snr: 45 - ### REQUIRED: Path to background noise, must have same format and sampling rate as input signal(s) - background_noise_path: "experiments/selection/P800-4/background_noise/background_noise_cat2.wav" - -################################################# -### Bitstream processing -################################################# - -################################################ -### Configuration for conditions under test -################################################ -conditions_to_generate: - ### Reference and anchor conditions ########################## - c01: - type: ref - c02: - type: mnru - q: 32 - c03: - type: mnru - q: 28 - c04: - type: mnru - q: 24 - c05: - type: mnru - q: 20 - c06: - type: esdru - alpha: 0.8 - c07: - type: esdru - alpha: 0.675 - c08: - type: esdru - alpha: 0.55 - - ### EVS condition ################################ - c09: - type: evs - bitrates: - - 7200 - cod: - fmt: "PLANARFOA" - opts: ["-max_band", "FB"] - dec: - c10: - type: evs - bitrates: - - 7200 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c11: - type: evs - bitrates: - - 8000 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c12: - type: evs - bitrates: - - 9600 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c13: - type: evs - bitrates: - - 13200 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c14: - type: evs - bitrates: - - 16400 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c15: - type: evs - bitrates: - - 24400 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c16: - type: evs - bitrates: - - 32000 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - - c17: - type: evs - bitrates: - - 7200 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c18: - type: evs - bitrates: - - 8000 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c19: - type: evs - bitrates: - - 9600 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c20: - type: evs - bitrates: - - 13200 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c21: - type: evs - bitrates: - - 16400 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c22: - type: evs - bitrates: - - 24400 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c23: - type: evs - bitrates: - - 32000 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - - ### IVAS condition ############################### - c24: - type: ivas - bitrates: - - 16400 - cod: - dec: - fmt: "FOA" - c25: - type: ivas - bitrates: - - 24400 - cod: - dec: - fmt: "FOA" - c26: - type: ivas - bitrates: - - 32000 - cod: - dec: - fmt: "FOA" - c27: - type: ivas - bitrates: - - 48000 - cod: - dec: - fmt: "FOA" - c28: - type: ivas - bitrates: - - 64000 - cod: - dec: - fmt: "FOA" - c29: - type: ivas - bitrates: - - 80000 - cod: - dec: - fmt: "FOA" - c30: - type: ivas - bitrates: - - 96000 - cod: - dec: - fmt: "FOA" - - c31: - type: ivas - bitrates: - - 24400 - cod: - dec: - fmt: "FOA" - tx: - type: "FER" - error_rate: 5 - c32: - type: ivas - bitrates: - - 32000 - cod: - dec: - fmt: "FOA" - tx: - type: "FER" - error_rate: 5 - c33: - type: ivas - bitrates: - - 48000 - cod: - dec: - fmt: "FOA" - tx: - type: "FER" - error_rate: 5 - c34: - type: ivas - bitrates: - - 64000 - cod: - dec: - fmt: "FOA" - tx: - type: "FER" - error_rate: 5 - c35: - type: ivas - bitrates: - - 80000 - cod: - dec: - fmt: "FOA" - tx: - type: "FER" - error_rate: 5 - c36: - type: ivas - bitrates: - - 96000 - cod: - dec: - fmt: "FOA" - tx: - type: "FER" - error_rate: 5 - -################################################ -### Post-processing -################################################ -postprocessing: - fmt: "BINAURAL" - fs: 48000 - loudness: -26 diff --git a/experiments/selection/P800-4/config/P800-4-cat3.yml b/experiments/selection/P800-4/config/P800-4-cat3.yml deleted file mode 100644 index fd071f99d0171616940fa5f26b78ce27eccaf422..0000000000000000000000000000000000000000 --- a/experiments/selection/P800-4/config/P800-4-cat3.yml +++ /dev/null @@ -1,342 +0,0 @@ ---- -################################################ -# General configuration -################################################ - -name: P800-4 -master_seed: 5 -prerun_seed: 2 - -input_path: "experiments/selection/P800-4/proc_input/cat3" -output_path: "experiments/selection/P800-4/proc_output/cat3" -use_windows_codec_binaries: true -condition_in_output_filename: true - -################################################ -### Input configuration -################################################ -input: - fmt: "FOA" - # TODO: to be clarified in Test Plan - fs: 48000 - -################################################ -### Pre-processing on individual items -################################################ -preprocessing: - mask: "HP50" - loudness: -26 - loudness_fmt: "BINAURAL" - window: 100 - -################################################ -### Pre-processing on whole signal(s) -################################################ -preprocessing_2: - concatenate_input: true - # concatenation_order: [] - preamble: 10000 - preamble_noise: true - repeat_signal: true - background_noise: - ### REQUIRED: SNR for background noise in dB - snr: 45 - ### REQUIRED: Path to background noise, must have same format and sampling rate as input signal(s) - background_noise_path: "experiments/selection/P800-4/background_noise/background_noise_cat3.wav" - -################################################# -### Bitstream processing -################################################# - -################################################ -### Configuration for conditions under test -################################################ -conditions_to_generate: - ### Reference and anchor conditions ########################## - c01: - type: ref - c02: - type: mnru - q: 32 - c03: - type: mnru - q: 28 - c04: - type: mnru - q: 24 - c05: - type: mnru - q: 20 - c06: - type: esdru - alpha: 0.8 - c07: - type: esdru - alpha: 0.675 - c08: - type: esdru - alpha: 0.55 - - ### EVS condition ################################ - c09: - type: evs - bitrates: - - 7200 - cod: - fmt: "PLANARFOA" - opts: ["-max_band", "FB"] - dec: - c10: - type: evs - bitrates: - - 7200 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c11: - type: evs - bitrates: - - 8000 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c12: - type: evs - bitrates: - - 9600 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c13: - type: evs - bitrates: - - 13200 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c14: - type: evs - bitrates: - - 16400 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c15: - type: evs - bitrates: - - 24400 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c16: - type: evs - bitrates: - - 32000 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - - c17: - type: evs - bitrates: - - 7200 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c18: - type: evs - bitrates: - - 8000 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c19: - type: evs - bitrates: - - 9600 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c20: - type: evs - bitrates: - - 13200 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c21: - type: evs - bitrates: - - 16400 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c22: - type: evs - bitrates: - - 24400 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c23: - type: evs - bitrates: - - 32000 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - - ### IVAS condition ############################### - c24: - type: ivas - bitrates: - - 16400 - cod: - dec: - fmt: "FOA" - c25: - type: ivas - bitrates: - - 24400 - cod: - dec: - fmt: "FOA" - c26: - type: ivas - bitrates: - - 32000 - cod: - dec: - fmt: "FOA" - c27: - type: ivas - bitrates: - - 48000 - cod: - dec: - fmt: "FOA" - c28: - type: ivas - bitrates: - - 64000 - cod: - dec: - fmt: "FOA" - c29: - type: ivas - bitrates: - - 80000 - cod: - dec: - fmt: "FOA" - c30: - type: ivas - bitrates: - - 96000 - cod: - dec: - fmt: "FOA" - - c31: - type: ivas - bitrates: - - 24400 - cod: - dec: - fmt: "FOA" - tx: - type: "FER" - error_rate: 5 - c32: - type: ivas - bitrates: - - 32000 - cod: - dec: - fmt: "FOA" - tx: - type: "FER" - error_rate: 5 - c33: - type: ivas - bitrates: - - 48000 - cod: - dec: - fmt: "FOA" - tx: - type: "FER" - error_rate: 5 - c34: - type: ivas - bitrates: - - 64000 - cod: - dec: - fmt: "FOA" - tx: - type: "FER" - error_rate: 5 - c35: - type: ivas - bitrates: - - 80000 - cod: - dec: - fmt: "FOA" - tx: - type: "FER" - error_rate: 5 - c36: - type: ivas - bitrates: - - 96000 - cod: - dec: - fmt: "FOA" - tx: - type: "FER" - error_rate: 5 - -################################################ -### Post-processing -################################################ -postprocessing: - fmt: "BINAURAL" - fs: 48000 - loudness: -26 diff --git a/experiments/selection/P800-4/config/P800-4-cat4.yml b/experiments/selection/P800-4/config/P800-4-cat4.yml deleted file mode 100644 index a8e69a007573b0285bdacd47dd24599b627c6d86..0000000000000000000000000000000000000000 --- a/experiments/selection/P800-4/config/P800-4-cat4.yml +++ /dev/null @@ -1,342 +0,0 @@ ---- -################################################ -# General configuration -################################################ - -name: P800-4 -master_seed: 5 -prerun_seed: 2 - -input_path: "experiments/selection/P800-4/proc_input/cat4" -output_path: "experiments/selection/P800-4/proc_output/cat4" -use_windows_codec_binaries: true -condition_in_output_filename: true - -################################################ -### Input configuration -################################################ -input: - fmt: "FOA" - # TODO: to be clarified in Test Plan - fs: 48000 - -################################################ -### Pre-processing on individual items -################################################ -preprocessing: - mask: "HP50" - loudness: -26 - loudness_fmt: "BINAURAL" - window: 100 - -################################################ -### Pre-processing on whole signal(s) -################################################ -preprocessing_2: - concatenate_input: true - # concatenation_order: [] - preamble: 10000 - preamble_noise: true - repeat_signal: true - background_noise: - ### REQUIRED: SNR for background noise in dB - snr: 45 - ### REQUIRED: Path to background noise, must have same format and sampling rate as input signal(s) - background_noise_path: "experiments/selection/P800-4/background_noise/background_noise_cat4.wav" - -################################################# -### Bitstream processing -################################################# - -################################################ -### Configuration for conditions under test -################################################ -conditions_to_generate: - ### Reference and anchor conditions ########################## - c01: - type: ref - c02: - type: mnru - q: 32 - c03: - type: mnru - q: 28 - c04: - type: mnru - q: 24 - c05: - type: mnru - q: 20 - c06: - type: esdru - alpha: 0.8 - c07: - type: esdru - alpha: 0.675 - c08: - type: esdru - alpha: 0.55 - - ### EVS condition ################################ - c09: - type: evs - bitrates: - - 7200 - cod: - fmt: "PLANARFOA" - opts: ["-max_band", "FB"] - dec: - c10: - type: evs - bitrates: - - 7200 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c11: - type: evs - bitrates: - - 8000 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c12: - type: evs - bitrates: - - 9600 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c13: - type: evs - bitrates: - - 13200 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c14: - type: evs - bitrates: - - 16400 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c15: - type: evs - bitrates: - - 24400 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c16: - type: evs - bitrates: - - 32000 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - - c17: - type: evs - bitrates: - - 7200 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c18: - type: evs - bitrates: - - 8000 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c19: - type: evs - bitrates: - - 9600 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c20: - type: evs - bitrates: - - 13200 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c21: - type: evs - bitrates: - - 16400 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c22: - type: evs - bitrates: - - 24400 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c23: - type: evs - bitrates: - - 32000 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - - ### IVAS condition ############################### - c24: - type: ivas - bitrates: - - 16400 - cod: - dec: - fmt: "FOA" - c25: - type: ivas - bitrates: - - 24400 - cod: - dec: - fmt: "FOA" - c26: - type: ivas - bitrates: - - 32000 - cod: - dec: - fmt: "FOA" - c27: - type: ivas - bitrates: - - 48000 - cod: - dec: - fmt: "FOA" - c28: - type: ivas - bitrates: - - 64000 - cod: - dec: - fmt: "FOA" - c29: - type: ivas - bitrates: - - 80000 - cod: - dec: - fmt: "FOA" - c30: - type: ivas - bitrates: - - 96000 - cod: - dec: - fmt: "FOA" - - c31: - type: ivas - bitrates: - - 24400 - cod: - dec: - fmt: "FOA" - tx: - type: "FER" - error_rate: 5 - c32: - type: ivas - bitrates: - - 32000 - cod: - dec: - fmt: "FOA" - tx: - type: "FER" - error_rate: 5 - c33: - type: ivas - bitrates: - - 48000 - cod: - dec: - fmt: "FOA" - tx: - type: "FER" - error_rate: 5 - c34: - type: ivas - bitrates: - - 64000 - cod: - dec: - fmt: "FOA" - tx: - type: "FER" - error_rate: 5 - c35: - type: ivas - bitrates: - - 80000 - cod: - dec: - fmt: "FOA" - tx: - type: "FER" - error_rate: 5 - c36: - type: ivas - bitrates: - - 96000 - cod: - dec: - fmt: "FOA" - tx: - type: "FER" - error_rate: 5 - -################################################ -### Post-processing -################################################ -postprocessing: - fmt: "BINAURAL" - fs: 48000 - loudness: -26 diff --git a/experiments/selection/P800-4/config/P800-4-cat5.yml b/experiments/selection/P800-4/config/P800-4-cat5.yml deleted file mode 100644 index 3b3ff2b525e474b316c080598b75baa9c743fc06..0000000000000000000000000000000000000000 --- a/experiments/selection/P800-4/config/P800-4-cat5.yml +++ /dev/null @@ -1,342 +0,0 @@ ---- -################################################ -# General configuration -################################################ - -name: P800-4 -master_seed: 5 -prerun_seed: 2 - -input_path: "experiments/selection/P800-4/proc_input/cat5" -output_path: "experiments/selection/P800-4/proc_output/cat5" -use_windows_codec_binaries: true -condition_in_output_filename: true - -################################################ -### Input configuration -################################################ -input: - fmt: "FOA" - # TODO: to be clarified in Test Plan - fs: 48000 - -################################################ -### Pre-processing on individual items -################################################ -preprocessing: - mask: "HP50" - loudness: -26 - loudness_fmt: "BINAURAL" - window: 100 - -################################################ -### Pre-processing on whole signal(s) -################################################ -preprocessing_2: - concatenate_input: true - # concatenation_order: [] - preamble: 10000 - preamble_noise: true - repeat_signal: true - background_noise: - ### REQUIRED: SNR for background noise in dB - snr: 45 - ### REQUIRED: Path to background noise, must have same format and sampling rate as input signal(s) - background_noise_path: "experiments/selection/P800-4/background_noise/background_noise_cat5.wav" - -################################################# -### Bitstream processing -################################################# - -################################################ -### Configuration for conditions under test -################################################ -conditions_to_generate: - ### Reference and anchor conditions ########################## - c01: - type: ref - c02: - type: mnru - q: 32 - c03: - type: mnru - q: 28 - c04: - type: mnru - q: 24 - c05: - type: mnru - q: 20 - c06: - type: esdru - alpha: 0.8 - c07: - type: esdru - alpha: 0.675 - c08: - type: esdru - alpha: 0.55 - - ### EVS condition ################################ - c09: - type: evs - bitrates: - - 7200 - cod: - fmt: "PLANARFOA" - opts: ["-max_band", "FB"] - dec: - c10: - type: evs - bitrates: - - 7200 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c11: - type: evs - bitrates: - - 8000 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c12: - type: evs - bitrates: - - 9600 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c13: - type: evs - bitrates: - - 13200 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c14: - type: evs - bitrates: - - 16400 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c15: - type: evs - bitrates: - - 24400 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c16: - type: evs - bitrates: - - 32000 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - - c17: - type: evs - bitrates: - - 7200 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c18: - type: evs - bitrates: - - 8000 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c19: - type: evs - bitrates: - - 9600 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c20: - type: evs - bitrates: - - 13200 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c21: - type: evs - bitrates: - - 16400 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c22: - type: evs - bitrates: - - 24400 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c23: - type: evs - bitrates: - - 32000 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - - ### IVAS condition ############################### - c24: - type: ivas - bitrates: - - 16400 - cod: - dec: - fmt: "FOA" - c25: - type: ivas - bitrates: - - 24400 - cod: - dec: - fmt: "FOA" - c26: - type: ivas - bitrates: - - 32000 - cod: - dec: - fmt: "FOA" - c27: - type: ivas - bitrates: - - 48000 - cod: - dec: - fmt: "FOA" - c28: - type: ivas - bitrates: - - 64000 - cod: - dec: - fmt: "FOA" - c29: - type: ivas - bitrates: - - 80000 - cod: - dec: - fmt: "FOA" - c30: - type: ivas - bitrates: - - 96000 - cod: - dec: - fmt: "FOA" - - c31: - type: ivas - bitrates: - - 24400 - cod: - dec: - fmt: "FOA" - tx: - type: "FER" - error_rate: 5 - c32: - type: ivas - bitrates: - - 32000 - cod: - dec: - fmt: "FOA" - tx: - type: "FER" - error_rate: 5 - c33: - type: ivas - bitrates: - - 48000 - cod: - dec: - fmt: "FOA" - tx: - type: "FER" - error_rate: 5 - c34: - type: ivas - bitrates: - - 64000 - cod: - dec: - fmt: "FOA" - tx: - type: "FER" - error_rate: 5 - c35: - type: ivas - bitrates: - - 80000 - cod: - dec: - fmt: "FOA" - tx: - type: "FER" - error_rate: 5 - c36: - type: ivas - bitrates: - - 96000 - cod: - dec: - fmt: "FOA" - tx: - type: "FER" - error_rate: 5 - -################################################ -### Post-processing -################################################ -postprocessing: - fmt: "BINAURAL" - fs: 48000 - loudness: -26 diff --git a/experiments/selection/P800-4/config/P800-4-cat6.yml b/experiments/selection/P800-4/config/P800-4-cat6.yml deleted file mode 100644 index 2d071a37fab21a160d4f6320699af73c6fd5ac24..0000000000000000000000000000000000000000 --- a/experiments/selection/P800-4/config/P800-4-cat6.yml +++ /dev/null @@ -1,342 +0,0 @@ ---- -################################################ -# General configuration -################################################ - -name: P800-4 -master_seed: 5 -prerun_seed: 2 - -input_path: "experiments/selection/P800-4/proc_input/cat6" -output_path: "experiments/selection/P800-4/proc_output/cat6" -use_windows_codec_binaries: true -condition_in_output_filename: true - -################################################ -### Input configuration -################################################ -input: - fmt: "FOA" - # TODO: to be clarified in Test Plan - fs: 48000 - -################################################ -### Pre-processing on individual items -################################################ -preprocessing: - mask: "HP50" - loudness: -26 - loudness_fmt: "BINAURAL" - window: 100 - -################################################ -### Pre-processing on whole signal(s) -################################################ -preprocessing_2: - concatenate_input: true - # concatenation_order: [] - preamble: 10000 - preamble_noise: true - repeat_signal: true - background_noise: - ### REQUIRED: SNR for background noise in dB - snr: 45 - ### REQUIRED: Path to background noise, must have same format and sampling rate as input signal(s) - background_noise_path: "experiments/selection/P800-4/background_noise/background_noise_cat6.wav" - -################################################# -### Bitstream processing -################################################# - -################################################ -### Configuration for conditions under test -################################################ -conditions_to_generate: - ### Reference and anchor conditions ########################## - c01: - type: ref - c02: - type: mnru - q: 32 - c03: - type: mnru - q: 28 - c04: - type: mnru - q: 24 - c05: - type: mnru - q: 20 - c06: - type: esdru - alpha: 0.8 - c07: - type: esdru - alpha: 0.675 - c08: - type: esdru - alpha: 0.55 - - ### EVS condition ################################ - c09: - type: evs - bitrates: - - 7200 - cod: - fmt: "PLANARFOA" - opts: ["-max_band", "FB"] - dec: - c10: - type: evs - bitrates: - - 7200 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c11: - type: evs - bitrates: - - 8000 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c12: - type: evs - bitrates: - - 9600 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c13: - type: evs - bitrates: - - 13200 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c14: - type: evs - bitrates: - - 16400 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c15: - type: evs - bitrates: - - 24400 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c16: - type: evs - bitrates: - - 32000 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - - c17: - type: evs - bitrates: - - 7200 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c18: - type: evs - bitrates: - - 8000 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c19: - type: evs - bitrates: - - 9600 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c20: - type: evs - bitrates: - - 13200 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c21: - type: evs - bitrates: - - 16400 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c22: - type: evs - bitrates: - - 24400 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c23: - type: evs - bitrates: - - 32000 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - - ### IVAS condition ############################### - c24: - type: ivas - bitrates: - - 16400 - cod: - dec: - fmt: "FOA" - c25: - type: ivas - bitrates: - - 24400 - cod: - dec: - fmt: "FOA" - c26: - type: ivas - bitrates: - - 32000 - cod: - dec: - fmt: "FOA" - c27: - type: ivas - bitrates: - - 48000 - cod: - dec: - fmt: "FOA" - c28: - type: ivas - bitrates: - - 64000 - cod: - dec: - fmt: "FOA" - c29: - type: ivas - bitrates: - - 80000 - cod: - dec: - fmt: "FOA" - c30: - type: ivas - bitrates: - - 96000 - cod: - dec: - fmt: "FOA" - - c31: - type: ivas - bitrates: - - 24400 - cod: - dec: - fmt: "FOA" - tx: - type: "FER" - error_rate: 5 - c32: - type: ivas - bitrates: - - 32000 - cod: - dec: - fmt: "FOA" - tx: - type: "FER" - error_rate: 5 - c33: - type: ivas - bitrates: - - 48000 - cod: - dec: - fmt: "FOA" - tx: - type: "FER" - error_rate: 5 - c34: - type: ivas - bitrates: - - 64000 - cod: - dec: - fmt: "FOA" - tx: - type: "FER" - error_rate: 5 - c35: - type: ivas - bitrates: - - 80000 - cod: - dec: - fmt: "FOA" - tx: - type: "FER" - error_rate: 5 - c36: - type: ivas - bitrates: - - 96000 - cod: - dec: - fmt: "FOA" - tx: - type: "FER" - error_rate: 5 - -################################################ -### Post-processing -################################################ -postprocessing: - fmt: "BINAURAL" - fs: 48000 - loudness: -26 diff --git a/experiments/selection/P800-4/config/P800-4-cat1.yml b/experiments/selection/P800-4/config/P800-4.yml similarity index 97% rename from experiments/selection/P800-4/config/P800-4-cat1.yml rename to experiments/selection/P800-4/config/P800-4.yml index 4dfb1de7b76d799444d9dd2f819a5da2ae34b662..98aa56da854ba30832a4db2d96d8a938fa016702 100644 --- a/experiments/selection/P800-4/config/P800-4-cat1.yml +++ b/experiments/selection/P800-4/config/P800-4.yml @@ -7,8 +7,8 @@ name: P800-4 master_seed: 5 prerun_seed: 2 -input_path: "experiments/selection/P800-4/proc_input/cat1" -output_path: "experiments/selection/P800-4/proc_output/cat1" +input_path: "experiments/selection/P800-4/proc_input" +output_path: "experiments/selection/P800-4/proc_output" use_windows_codec_binaries: true condition_in_output_filename: true @@ -42,7 +42,7 @@ preprocessing_2: ### REQUIRED: SNR for background noise in dB snr: 45 ### REQUIRED: Path to background noise, must have same format and sampling rate as input signal(s) - background_noise_path: "experiments/selection/P800-4/background_noise/background_noise_cat1.wav" + background_noise_path: "experiments/selection/P800-4/background_noise/background_noise.wav" ################################################# ### Bitstream processing diff --git a/experiments/selection/P800-5/config/P800-5-cat2.yml b/experiments/selection/P800-5/config/P800-5-cat2.yml deleted file mode 100644 index 0a487e79e3ccfe73befde95c3f7cf9360e1ae29f..0000000000000000000000000000000000000000 --- a/experiments/selection/P800-5/config/P800-5-cat2.yml +++ /dev/null @@ -1,308 +0,0 @@ ---- -################################################ -# General configuration -################################################ - -name: P800-5 -master_seed: 5 -prerun_seed: 2 - -input_path: "experiments/selection/P800-5/proc_input/cat2" -output_path: "experiments/selection/P800-5/proc_output/cat2" -use_windows_codec_binaries: true -condition_in_output_filename: true - -################################################ -### Input configuration -################################################ -input: - fmt: "FOA" - # TODO: to be clarified in Test Plan - fs: 48000 - -################################################ -### Pre-processing on individual items -################################################ -preprocessing: - mask: "HP50" - loudness: -26 - loudness_fmt: "BINAURAL" - window: 100 - -################################################ -### Pre-processing on whole signal(s) -################################################ -preprocessing_2: - concatenate_input: true - # concatenation_order: [] - preamble: 10000 - preamble_noise: true - repeat_signal: true - background_noise: - ### REQUIRED: SNR for background noise in dB - snr: 10 - ### REQUIRED: Path to background noise, must have same format and sampling rate as input signal(s) - background_noise_path: "experiments/selection/P800-5/background_noise/background_noise_cat2.wav" - -################################################# -### Bitstream processing -################################################# - -################################################ -### Configuration for conditions under test -################################################ -conditions_to_generate: - ### Reference and anchor conditions ########################## - c01: - type: ref - c02: - type: mnru - q: 29 - c03: - type: mnru - q: 25 - c04: - type: mnru - q: 21 - c05: - type: mnru - q: 17 - c06: - type: esdru - alpha: 0.8 - c07: - type: esdru - alpha: 0.6 - c08: - type: esdru - alpha: 0.4 - - ### EVS condition ################################ - c09: - type: evs - bitrates: - - 7200 - cod: - fmt: "PLANARFOA" - opts: ["-max_band", "FB"] - c10: - type: evs - bitrates: - - 7200 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c11: - type: evs - bitrates: - - 8000 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c12: - type: evs - bitrates: - - 9600 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c13: - type: evs - bitrates: - - 13200 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c14: - type: evs - bitrates: - - 16400 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c15: - type: evs - bitrates: - - 24400 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c16: - type: evs - bitrates: - - 32000 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - - c17: - type: evs - bitrates: - - 7200 - cod: - fmt: "PLANARFOA" - opts: ["-dtx", "-max_band", "FB"] - dec: - c18: - type: evs - bitrates: - - 7200 - cod: - fmt: "FOA" - opts: ["-dtx", "-max_band", "FB"] - dec: - c19: - type: evs - bitrates: - - 8000 - cod: - fmt: "FOA" - opts: ["-dtx", "-max_band", "FB"] - dec: - c20: - type: evs - bitrates: - - 9600 - cod: - fmt: "FOA" - opts: ["-dtx", "-max_band", "FB"] - dec: - c21: - type: evs - bitrates: - - 13200 - cod: - fmt: "FOA" - opts: ["-dtx", "-max_band", "FB"] - dec: - c22: - type: evs - bitrates: - - 16400 - cod: - fmt: "FOA" - opts: ["-dtx", "-max_band", "FB"] - dec: - c23: - type: evs - bitrates: - - 24400 - cod: - fmt: "FOA" - opts: ["-dtx", "-max_band", "FB"] - dec: - - ### IVAS condition ############################### - c24: - type: ivas - bitrates: - - 16400 - cod: - dec: - fmt: "FOA" - c25: - type: ivas - bitrates: - - 24400 - cod: - dec: - fmt: "FOA" - c26: - type: ivas - bitrates: - - 32000 - cod: - dec: - fmt: "FOA" - c27: - type: ivas - bitrates: - - 48000 - cod: - dec: - fmt: "FOA" - c28: - type: ivas - bitrates: - - 64000 - cod: - dec: - fmt: "FOA" - c29: - type: ivas - bitrates: - - 80000 - cod: - dec: - fmt: "FOA" - c30: - type: ivas - bitrates: - - 96000 - cod: - dec: - fmt: "FOA" - - c31: - type: ivas - bitrates: - - 16400 - cod: - opts: ["-dtx"] - dec: - fmt: "FOA" - c32: - type: ivas - bitrates: - - 24400 - cod: - opts: ["-dtx"] - dec: - fmt: "FOA" - c33: - type: ivas - bitrates: - - 32000 - cod: - opts: ["-dtx"] - dec: - fmt: "FOA" - c34: - type: ivas - bitrates: - - 48000 - cod: - opts: ["-dtx"] - dec: - fmt: "FOA" - c35: - type: ivas - bitrates: - - 64000 - cod: - opts: ["-dtx"] - dec: - fmt: "FOA" - c36: - type: ivas - bitrates: - - 80000 - cod: - opts: ["-dtx"] - dec: - fmt: "FOA" - -################################################ -### Post-processing -################################################ -postprocessing: - fmt: "BINAURAL" - fs: 48000 - loudness: -26 diff --git a/experiments/selection/P800-5/config/P800-5-cat3.yml b/experiments/selection/P800-5/config/P800-5-cat3.yml deleted file mode 100644 index b36a6cfba26a617984fb4dc4f5ad46632e2be0ce..0000000000000000000000000000000000000000 --- a/experiments/selection/P800-5/config/P800-5-cat3.yml +++ /dev/null @@ -1,308 +0,0 @@ ---- -################################################ -# General configuration -################################################ - -name: P800-5 -master_seed: 5 -prerun_seed: 2 - -input_path: "experiments/selection/P800-5/proc_input/cat3" -output_path: "experiments/selection/P800-5/proc_output/cat3" -use_windows_codec_binaries: true -condition_in_output_filename: true - -################################################ -### Input configuration -################################################ -input: - fmt: "FOA" - # TODO: to be clarified in Test Plan - fs: 48000 - -################################################ -### Pre-processing on individual items -################################################ -preprocessing: - mask: "HP50" - loudness: -26 - loudness_fmt: "BINAURAL" - window: 100 - -################################################ -### Pre-processing on whole signal(s) -################################################ -preprocessing_2: - concatenate_input: true - # concatenation_order: [] - preamble: 10000 - preamble_noise: true - repeat_signal: true - background_noise: - ### REQUIRED: SNR for background noise in dB - snr: 15 - ### REQUIRED: Path to background noise, must have same format and sampling rate as input signal(s) - background_noise_path: "experiments/selection/P800-5/background_noise/background_noise_cat3.wav" - -################################################# -### Bitstream processing -################################################# - -################################################ -### Configuration for conditions under test -################################################ -conditions_to_generate: - ### Reference and anchor conditions ########################## - c01: - type: ref - c02: - type: mnru - q: 29 - c03: - type: mnru - q: 25 - c04: - type: mnru - q: 21 - c05: - type: mnru - q: 17 - c06: - type: esdru - alpha: 0.8 - c07: - type: esdru - alpha: 0.6 - c08: - type: esdru - alpha: 0.4 - - ### EVS condition ################################ - c09: - type: evs - bitrates: - - 7200 - cod: - fmt: "PLANARFOA" - opts: ["-max_band", "FB"] - c10: - type: evs - bitrates: - - 7200 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c11: - type: evs - bitrates: - - 8000 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c12: - type: evs - bitrates: - - 9600 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c13: - type: evs - bitrates: - - 13200 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c14: - type: evs - bitrates: - - 16400 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c15: - type: evs - bitrates: - - 24400 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c16: - type: evs - bitrates: - - 32000 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - - c17: - type: evs - bitrates: - - 7200 - cod: - fmt: "PLANARFOA" - opts: ["-dtx", "-max_band", "FB"] - dec: - c18: - type: evs - bitrates: - - 7200 - cod: - fmt: "FOA" - opts: ["-dtx", "-max_band", "FB"] - dec: - c19: - type: evs - bitrates: - - 8000 - cod: - fmt: "FOA" - opts: ["-dtx", "-max_band", "FB"] - dec: - c20: - type: evs - bitrates: - - 9600 - cod: - fmt: "FOA" - opts: ["-dtx", "-max_band", "FB"] - dec: - c21: - type: evs - bitrates: - - 13200 - cod: - fmt: "FOA" - opts: ["-dtx", "-max_band", "FB"] - dec: - c22: - type: evs - bitrates: - - 16400 - cod: - fmt: "FOA" - opts: ["-dtx", "-max_band", "FB"] - dec: - c23: - type: evs - bitrates: - - 24400 - cod: - fmt: "FOA" - opts: ["-dtx", "-max_band", "FB"] - dec: - - ### IVAS condition ############################### - c24: - type: ivas - bitrates: - - 16400 - cod: - dec: - fmt: "FOA" - c25: - type: ivas - bitrates: - - 24400 - cod: - dec: - fmt: "FOA" - c26: - type: ivas - bitrates: - - 32000 - cod: - dec: - fmt: "FOA" - c27: - type: ivas - bitrates: - - 48000 - cod: - dec: - fmt: "FOA" - c28: - type: ivas - bitrates: - - 64000 - cod: - dec: - fmt: "FOA" - c29: - type: ivas - bitrates: - - 80000 - cod: - dec: - fmt: "FOA" - c30: - type: ivas - bitrates: - - 96000 - cod: - dec: - fmt: "FOA" - - c31: - type: ivas - bitrates: - - 16400 - cod: - opts: ["-dtx"] - dec: - fmt: "FOA" - c32: - type: ivas - bitrates: - - 24400 - cod: - opts: ["-dtx"] - dec: - fmt: "FOA" - c33: - type: ivas - bitrates: - - 32000 - cod: - opts: ["-dtx"] - dec: - fmt: "FOA" - c34: - type: ivas - bitrates: - - 48000 - cod: - opts: ["-dtx"] - dec: - fmt: "FOA" - c35: - type: ivas - bitrates: - - 64000 - cod: - opts: ["-dtx"] - dec: - fmt: "FOA" - c36: - type: ivas - bitrates: - - 80000 - cod: - opts: ["-dtx"] - dec: - fmt: "FOA" - -################################################ -### Post-processing -################################################ -postprocessing: - fmt: "BINAURAL" - fs: 48000 - loudness: -26 diff --git a/experiments/selection/P800-5/config/P800-5-cat4.yml b/experiments/selection/P800-5/config/P800-5-cat4.yml deleted file mode 100644 index 812db776533304af49da4854ec3c9b19a065ceb4..0000000000000000000000000000000000000000 --- a/experiments/selection/P800-5/config/P800-5-cat4.yml +++ /dev/null @@ -1,308 +0,0 @@ ---- -################################################ -# General configuration -################################################ - -name: P800-5 -master_seed: 5 -prerun_seed: 2 - -input_path: "experiments/selection/P800-5/proc_input/cat4" -output_path: "experiments/selection/P800-5/proc_output/cat4" -use_windows_codec_binaries: true -condition_in_output_filename: true - -################################################ -### Input configuration -################################################ -input: - fmt: "FOA" - # TODO: to be clarified in Test Plan - fs: 48000 - -################################################ -### Pre-processing on individual items -################################################ -preprocessing: - mask: "HP50" - loudness: -26 - loudness_fmt: "BINAURAL" - window: 100 - -################################################ -### Pre-processing on whole signal(s) -################################################ -preprocessing_2: - concatenate_input: true - # concatenation_order: [] - preamble: 10000 - preamble_noise: true - repeat_signal: true - background_noise: - ### REQUIRED: SNR for background noise in dB - snr: 15 - ### REQUIRED: Path to background noise, must have same format and sampling rate as input signal(s) - background_noise_path: "experiments/selection/P800-5/background_noise/background_noise_cat4.wav" - -################################################# -### Bitstream processing -################################################# - -################################################ -### Configuration for conditions under test -################################################ -conditions_to_generate: - ### Reference and anchor conditions ########################## - c01: - type: ref - c02: - type: mnru - q: 29 - c03: - type: mnru - q: 25 - c04: - type: mnru - q: 21 - c05: - type: mnru - q: 17 - c06: - type: esdru - alpha: 0.8 - c07: - type: esdru - alpha: 0.6 - c08: - type: esdru - alpha: 0.4 - - ### EVS condition ################################ - c09: - type: evs - bitrates: - - 7200 - cod: - fmt: "PLANARFOA" - opts: ["-max_band", "FB"] - c10: - type: evs - bitrates: - - 7200 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c11: - type: evs - bitrates: - - 8000 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c12: - type: evs - bitrates: - - 9600 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c13: - type: evs - bitrates: - - 13200 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c14: - type: evs - bitrates: - - 16400 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c15: - type: evs - bitrates: - - 24400 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c16: - type: evs - bitrates: - - 32000 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - - c17: - type: evs - bitrates: - - 7200 - cod: - fmt: "PLANARFOA" - opts: ["-dtx", "-max_band", "FB"] - dec: - c18: - type: evs - bitrates: - - 7200 - cod: - fmt: "FOA" - opts: ["-dtx", "-max_band", "FB"] - dec: - c19: - type: evs - bitrates: - - 8000 - cod: - fmt: "FOA" - opts: ["-dtx", "-max_band", "FB"] - dec: - c20: - type: evs - bitrates: - - 9600 - cod: - fmt: "FOA" - opts: ["-dtx", "-max_band", "FB"] - dec: - c21: - type: evs - bitrates: - - 13200 - cod: - fmt: "FOA" - opts: ["-dtx", "-max_band", "FB"] - dec: - c22: - type: evs - bitrates: - - 16400 - cod: - fmt: "FOA" - opts: ["-dtx", "-max_band", "FB"] - dec: - c23: - type: evs - bitrates: - - 24400 - cod: - fmt: "FOA" - opts: ["-dtx", "-max_band", "FB"] - dec: - - ### IVAS condition ############################### - c24: - type: ivas - bitrates: - - 16400 - cod: - dec: - fmt: "FOA" - c25: - type: ivas - bitrates: - - 24400 - cod: - dec: - fmt: "FOA" - c26: - type: ivas - bitrates: - - 32000 - cod: - dec: - fmt: "FOA" - c27: - type: ivas - bitrates: - - 48000 - cod: - dec: - fmt: "FOA" - c28: - type: ivas - bitrates: - - 64000 - cod: - dec: - fmt: "FOA" - c29: - type: ivas - bitrates: - - 80000 - cod: - dec: - fmt: "FOA" - c30: - type: ivas - bitrates: - - 96000 - cod: - dec: - fmt: "FOA" - - c31: - type: ivas - bitrates: - - 16400 - cod: - opts: ["-dtx"] - dec: - fmt: "FOA" - c32: - type: ivas - bitrates: - - 24400 - cod: - opts: ["-dtx"] - dec: - fmt: "FOA" - c33: - type: ivas - bitrates: - - 32000 - cod: - opts: ["-dtx"] - dec: - fmt: "FOA" - c34: - type: ivas - bitrates: - - 48000 - cod: - opts: ["-dtx"] - dec: - fmt: "FOA" - c35: - type: ivas - bitrates: - - 64000 - cod: - opts: ["-dtx"] - dec: - fmt: "FOA" - c36: - type: ivas - bitrates: - - 80000 - cod: - opts: ["-dtx"] - dec: - fmt: "FOA" - -################################################ -### Post-processing -################################################ -postprocessing: - fmt: "BINAURAL" - fs: 48000 - loudness: -26 diff --git a/experiments/selection/P800-5/config/P800-5-cat5.yml b/experiments/selection/P800-5/config/P800-5-cat5.yml deleted file mode 100644 index 92f8bf5c9a4254e045f7a3f366b526b71deb9e2c..0000000000000000000000000000000000000000 --- a/experiments/selection/P800-5/config/P800-5-cat5.yml +++ /dev/null @@ -1,308 +0,0 @@ ---- -################################################ -# General configuration -################################################ - -name: P800-5 -master_seed: 5 -prerun_seed: 2 - -input_path: "experiments/selection/P800-5/proc_input/cat5" -output_path: "experiments/selection/P800-5/proc_output/cat5" -use_windows_codec_binaries: true -condition_in_output_filename: true - -################################################ -### Input configuration -################################################ -input: - fmt: "FOA" - # TODO: to be clarified in Test Plan - fs: 48000 - -################################################ -### Pre-processing on individual items -################################################ -preprocessing: - mask: "HP50" - loudness: -26 - loudness_fmt: "BINAURAL" - window: 100 - -################################################ -### Pre-processing on whole signal(s) -################################################ -preprocessing_2: - concatenate_input: true - # concatenation_order: [] - preamble: 10000 - preamble_noise: true - repeat_signal: true - background_noise: - ### REQUIRED: SNR for background noise in dB - snr: 15 - ### REQUIRED: Path to background noise, must have same format and sampling rate as input signal(s) - background_noise_path: "experiments/selection/P800-5/background_noise/background_noise_cat5.wav" - -################################################# -### Bitstream processing -################################################# - -################################################ -### Configuration for conditions under test -################################################ -conditions_to_generate: - ### Reference and anchor conditions ########################## - c01: - type: ref - c02: - type: mnru - q: 29 - c03: - type: mnru - q: 25 - c04: - type: mnru - q: 21 - c05: - type: mnru - q: 17 - c06: - type: esdru - alpha: 0.8 - c07: - type: esdru - alpha: 0.6 - c08: - type: esdru - alpha: 0.4 - - ### EVS condition ################################ - c09: - type: evs - bitrates: - - 7200 - cod: - fmt: "PLANARFOA" - opts: ["-max_band", "FB"] - c10: - type: evs - bitrates: - - 7200 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c11: - type: evs - bitrates: - - 8000 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c12: - type: evs - bitrates: - - 9600 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c13: - type: evs - bitrates: - - 13200 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c14: - type: evs - bitrates: - - 16400 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c15: - type: evs - bitrates: - - 24400 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c16: - type: evs - bitrates: - - 32000 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - - c17: - type: evs - bitrates: - - 7200 - cod: - fmt: "PLANARFOA" - opts: ["-dtx", "-max_band", "FB"] - dec: - c18: - type: evs - bitrates: - - 7200 - cod: - fmt: "FOA" - opts: ["-dtx", "-max_band", "FB"] - dec: - c19: - type: evs - bitrates: - - 8000 - cod: - fmt: "FOA" - opts: ["-dtx", "-max_band", "FB"] - dec: - c20: - type: evs - bitrates: - - 9600 - cod: - fmt: "FOA" - opts: ["-dtx", "-max_band", "FB"] - dec: - c21: - type: evs - bitrates: - - 13200 - cod: - fmt: "FOA" - opts: ["-dtx", "-max_band", "FB"] - dec: - c22: - type: evs - bitrates: - - 16400 - cod: - fmt: "FOA" - opts: ["-dtx", "-max_band", "FB"] - dec: - c23: - type: evs - bitrates: - - 24400 - cod: - fmt: "FOA" - opts: ["-dtx", "-max_band", "FB"] - dec: - - ### IVAS condition ############################### - c24: - type: ivas - bitrates: - - 16400 - cod: - dec: - fmt: "FOA" - c25: - type: ivas - bitrates: - - 24400 - cod: - dec: - fmt: "FOA" - c26: - type: ivas - bitrates: - - 32000 - cod: - dec: - fmt: "FOA" - c27: - type: ivas - bitrates: - - 48000 - cod: - dec: - fmt: "FOA" - c28: - type: ivas - bitrates: - - 64000 - cod: - dec: - fmt: "FOA" - c29: - type: ivas - bitrates: - - 80000 - cod: - dec: - fmt: "FOA" - c30: - type: ivas - bitrates: - - 96000 - cod: - dec: - fmt: "FOA" - - c31: - type: ivas - bitrates: - - 16400 - cod: - opts: ["-dtx"] - dec: - fmt: "FOA" - c32: - type: ivas - bitrates: - - 24400 - cod: - opts: ["-dtx"] - dec: - fmt: "FOA" - c33: - type: ivas - bitrates: - - 32000 - cod: - opts: ["-dtx"] - dec: - fmt: "FOA" - c34: - type: ivas - bitrates: - - 48000 - cod: - opts: ["-dtx"] - dec: - fmt: "FOA" - c35: - type: ivas - bitrates: - - 64000 - cod: - opts: ["-dtx"] - dec: - fmt: "FOA" - c36: - type: ivas - bitrates: - - 80000 - cod: - opts: ["-dtx"] - dec: - fmt: "FOA" - -################################################ -### Post-processing -################################################ -postprocessing: - fmt: "BINAURAL" - fs: 48000 - loudness: -26 diff --git a/experiments/selection/P800-5/config/P800-5-cat6.yml b/experiments/selection/P800-5/config/P800-5-cat6.yml deleted file mode 100644 index a1db50c7cceea7a6dc648d1bfc403f84df448c01..0000000000000000000000000000000000000000 --- a/experiments/selection/P800-5/config/P800-5-cat6.yml +++ /dev/null @@ -1,308 +0,0 @@ ---- -################################################ -# General configuration -################################################ - -name: P800-5 -master_seed: 5 -prerun_seed: 2 - -input_path: "experiments/selection/P800-5/proc_input/cat6" -output_path: "experiments/selection/P800-5/proc_output/cat6" -use_windows_codec_binaries: true -condition_in_output_filename: true - -################################################ -### Input configuration -################################################ -input: - fmt: "FOA" - # TODO: to be clarified in Test Plan - fs: 48000 - -################################################ -### Pre-processing on individual items -################################################ -preprocessing: - mask: "HP50" - loudness: -26 - loudness_fmt: "BINAURAL" - window: 100 - -################################################ -### Pre-processing on whole signal(s) -################################################ -preprocessing_2: - concatenate_input: true - # concatenation_order: [] - preamble: 10000 - preamble_noise: true - repeat_signal: true - background_noise: - ### REQUIRED: SNR for background noise in dB - snr: 15 - ### REQUIRED: Path to background noise, must have same format and sampling rate as input signal(s) - background_noise_path: "experiments/selection/P800-5/background_noise/background_noise_cat6.wav" - -################################################# -### Bitstream processing -################################################# - -################################################ -### Configuration for conditions under test -################################################ -conditions_to_generate: - ### Reference and anchor conditions ########################## - c01: - type: ref - c02: - type: mnru - q: 29 - c03: - type: mnru - q: 25 - c04: - type: mnru - q: 21 - c05: - type: mnru - q: 17 - c06: - type: esdru - alpha: 0.8 - c07: - type: esdru - alpha: 0.6 - c08: - type: esdru - alpha: 0.4 - - ### EVS condition ################################ - c09: - type: evs - bitrates: - - 7200 - cod: - fmt: "PLANARFOA" - opts: ["-max_band", "FB"] - c10: - type: evs - bitrates: - - 7200 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c11: - type: evs - bitrates: - - 8000 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c12: - type: evs - bitrates: - - 9600 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c13: - type: evs - bitrates: - - 13200 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c14: - type: evs - bitrates: - - 16400 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c15: - type: evs - bitrates: - - 24400 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c16: - type: evs - bitrates: - - 32000 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - - c17: - type: evs - bitrates: - - 7200 - cod: - fmt: "PLANARFOA" - opts: ["-dtx", "-max_band", "FB"] - dec: - c18: - type: evs - bitrates: - - 7200 - cod: - fmt: "FOA" - opts: ["-dtx", "-max_band", "FB"] - dec: - c19: - type: evs - bitrates: - - 8000 - cod: - fmt: "FOA" - opts: ["-dtx", "-max_band", "FB"] - dec: - c20: - type: evs - bitrates: - - 9600 - cod: - fmt: "FOA" - opts: ["-dtx", "-max_band", "FB"] - dec: - c21: - type: evs - bitrates: - - 13200 - cod: - fmt: "FOA" - opts: ["-dtx", "-max_band", "FB"] - dec: - c22: - type: evs - bitrates: - - 16400 - cod: - fmt: "FOA" - opts: ["-dtx", "-max_band", "FB"] - dec: - c23: - type: evs - bitrates: - - 24400 - cod: - fmt: "FOA" - opts: ["-dtx", "-max_band", "FB"] - dec: - - ### IVAS condition ############################### - c24: - type: ivas - bitrates: - - 16400 - cod: - dec: - fmt: "FOA" - c25: - type: ivas - bitrates: - - 24400 - cod: - dec: - fmt: "FOA" - c26: - type: ivas - bitrates: - - 32000 - cod: - dec: - fmt: "FOA" - c27: - type: ivas - bitrates: - - 48000 - cod: - dec: - fmt: "FOA" - c28: - type: ivas - bitrates: - - 64000 - cod: - dec: - fmt: "FOA" - c29: - type: ivas - bitrates: - - 80000 - cod: - dec: - fmt: "FOA" - c30: - type: ivas - bitrates: - - 96000 - cod: - dec: - fmt: "FOA" - - c31: - type: ivas - bitrates: - - 16400 - cod: - opts: ["-dtx"] - dec: - fmt: "FOA" - c32: - type: ivas - bitrates: - - 24400 - cod: - opts: ["-dtx"] - dec: - fmt: "FOA" - c33: - type: ivas - bitrates: - - 32000 - cod: - opts: ["-dtx"] - dec: - fmt: "FOA" - c34: - type: ivas - bitrates: - - 48000 - cod: - opts: ["-dtx"] - dec: - fmt: "FOA" - c35: - type: ivas - bitrates: - - 64000 - cod: - opts: ["-dtx"] - dec: - fmt: "FOA" - c36: - type: ivas - bitrates: - - 80000 - cod: - opts: ["-dtx"] - dec: - fmt: "FOA" - -################################################ -### Post-processing -################################################ -postprocessing: - fmt: "BINAURAL" - fs: 48000 - loudness: -26 diff --git a/experiments/selection/P800-5/config/P800-5-cat1.yml b/experiments/selection/P800-5/config/P800-5.yml similarity index 97% rename from experiments/selection/P800-5/config/P800-5-cat1.yml rename to experiments/selection/P800-5/config/P800-5.yml index d886f0d6ad8c314da7d6bb8e0f691bac115f8c65..d15fc7e059e87db04069c6208bd5282a772e67c5 100644 --- a/experiments/selection/P800-5/config/P800-5-cat1.yml +++ b/experiments/selection/P800-5/config/P800-5.yml @@ -7,8 +7,8 @@ name: P800-5 master_seed: 5 prerun_seed: 2 -input_path: "experiments/selection/P800-5/proc_input/cat1" -output_path: "experiments/selection/P800-5/proc_output/cat1" +input_path: "experiments/selection/P800-5/proc_input" +output_path: "experiments/selection/P800-5/proc_output" use_windows_codec_binaries: true condition_in_output_filename: true @@ -42,7 +42,7 @@ preprocessing_2: ### REQUIRED: SNR for background noise in dB snr: 10 ### REQUIRED: Path to background noise, must have same format and sampling rate as input signal(s) - background_noise_path: "experiments/selection/P800-5/background_noise/background_noise_cat1.wav" + background_noise_path: "experiments/selection/P800-5/background_noise/background_noise.wav" ################################################# ### Bitstream processing diff --git a/experiments/selection/P800-6/config/P800-6-cat2.yml b/experiments/selection/P800-6/config/P800-6-cat2.yml deleted file mode 100644 index e4294fdb20534be151fcd4141f4084a9b0225ba5..0000000000000000000000000000000000000000 --- a/experiments/selection/P800-6/config/P800-6-cat2.yml +++ /dev/null @@ -1,304 +0,0 @@ ---- -################################################ -# General configuration -################################################ - -name: P800-6 -master_seed: 5 -prerun_seed: 2 - -input_path: "experiments/selection/P800-6/proc_input/cat2" -output_path: "experiments/selection/P800-6/proc_output/cat2" -use_windows_codec_binaries: true -condition_in_output_filename: true - -################################################ -### Input configuration -################################################ -input: - fmt: "ISM1" - # TODO: to be clarified in Test Plan - fs: 48000 - -################################################ -### Pre-processing on individual items -################################################ -preprocessing: - mask: "HP50" - loudness: -26 - window: 100 - -################################################ -### Pre-processing on whole signal(s) -################################################ -preprocessing_2: - concatenate_input: true - # concatenation_order: [] - preamble: 10000 - preamble_noise: true - repeat_signal: true - -################################################# -### Bitstream processing -################################################# - -################################################ -### Configuration for conditions under test -################################################ -conditions_to_generate: - ### Reference and anchor conditions ########################## - c01: - type: ref - c02: - type: mnru - q: 15 - c03: - type: mnru - q: 23 - c04: - type: mnru - q: 31 - c05: - type: mnru - q: 39 - c06: - type: mnru - q: 47 - c07: - type: esdru - alpha: 0.1 - c08: - type: esdru - alpha: 0.3 - c09: - type: esdru - alpha: 0.5 - c10: - type: esdru - alpha: 0.7 - - ### EVS condition ################################ - c11: - type: evs - bitrates: - - 13200 - cod: - opts: ["-max_band", "FB"] - dec: - c12: - type: evs - bitrates: - - 16400 - cod: - opts: ["-max_band", "FB"] - dec: - c13: - type: evs - bitrates: - - 24400 - cod: - opts: ["-max_band", "FB"] - dec: - c14: - type: evs - bitrates: - - 32000 - cod: - opts: ["-max_band", "FB"] - dec: - c15: - type: evs - bitrates: - - 48000 - cod: - opts: ["-max_band", "FB"] - dec: - c16: - type: evs - bitrates: - - 64000 - cod: - opts: ["-max_band", "FB"] - dec: - - c17: - type: evs - bitrates: - - 13200 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c18: - type: evs - bitrates: - - 16400 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c19: - type: evs - bitrates: - - 24400 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c20: - type: evs - bitrates: - - 32000 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - - c21: - type: evs - bitrates: - - 13200 - cod: - opts: ["-dtx", "-max_band", "FB"] - dec: - c22: - type: evs - bitrates: - - 16400 - cod: - opts: ["-dtx", "-max_band", "FB"] - dec: - c23: - type: evs - bitrates: - - 24400 - cod: - opts: ["-dtx", "-max_band", "FB"] - dec: - - ### IVAS condition ############################### - c24: - type: ivas - bitrates: - - 13200 - cod: - dec: - fmt: "ISM1" - c25: - type: ivas - bitrates: - - 16400 - cod: - dec: - fmt: "ISM1" - c26: - type: ivas - bitrates: - - 24400 - cod: - dec: - fmt: "ISM1" - c27: - type: ivas - bitrates: - - 32000 - cod: - dec: - fmt: "ISM1" - c28: - type: ivas - bitrates: - - 48000 - cod: - dec: - fmt: "ISM1" - c29: - type: ivas - bitrates: - - 64000 - cod: - dec: - fmt: "ISM1" - - c30: - type: ivas - bitrates: - - 13200 - cod: - dec: - fmt: "ISM1" - tx: - type: "FER" - error_rate: 5 - c31: - type: ivas - bitrates: - - 16400 - cod: - dec: - fmt: "ISM1" - tx: - type: "FER" - error_rate: 5 - c32: - type: ivas - bitrates: - - 24400 - cod: - dec: - fmt: "ISM1" - tx: - type: "FER" - error_rate: 5 - c33: - type: ivas - bitrates: - - 32000 - cod: - dec: - fmt: "ISM1" - tx: - type: "FER" - error_rate: 5 - - c34: - type: ivas - bitrates: - - 13200 - cod: - opts: ["-dtx"] - dec: - fmt: "ISM1" - c35: - type: ivas - bitrates: - - 16400 - cod: - opts: ["-dtx"] - dec: - fmt: "ISM1" - c36: - type: ivas - bitrates: - - 24400 - cod: - opts: ["-dtx"] - dec: - fmt: "ISM1" - - -################################################ -### Post-processing -################################################ -postprocessing: - fmt: "BINAURAL" - fs: 48000 - loudness: -26 diff --git a/experiments/selection/P800-6/config/P800-6-cat3.yml b/experiments/selection/P800-6/config/P800-6-cat3.yml deleted file mode 100644 index 0180063689f59a60b23322666335ed862f76439f..0000000000000000000000000000000000000000 --- a/experiments/selection/P800-6/config/P800-6-cat3.yml +++ /dev/null @@ -1,304 +0,0 @@ ---- -################################################ -# General configuration -################################################ - -name: P800-6 -master_seed: 5 -prerun_seed: 2 - -input_path: "experiments/selection/P800-6/proc_input/cat3" -output_path: "experiments/selection/P800-6/proc_output/cat3" -use_windows_codec_binaries: true -condition_in_output_filename: true - -################################################ -### Input configuration -################################################ -input: - fmt: "ISM1" - # TODO: to be clarified in Test Plan - fs: 48000 - -################################################ -### Pre-processing on individual items -################################################ -preprocessing: - mask: "HP50" - loudness: -26 - window: 100 - -################################################ -### Pre-processing on whole signal(s) -################################################ -preprocessing_2: - concatenate_input: true - # concatenation_order: [] - preamble: 10000 - preamble_noise: true - repeat_signal: true - -################################################# -### Bitstream processing -################################################# - -################################################ -### Configuration for conditions under test -################################################ -conditions_to_generate: - ### Reference and anchor conditions ########################## - c01: - type: ref - c02: - type: mnru - q: 15 - c03: - type: mnru - q: 23 - c04: - type: mnru - q: 31 - c05: - type: mnru - q: 39 - c06: - type: mnru - q: 47 - c07: - type: esdru - alpha: 0.1 - c08: - type: esdru - alpha: 0.3 - c09: - type: esdru - alpha: 0.5 - c10: - type: esdru - alpha: 0.7 - - ### EVS condition ################################ - c11: - type: evs - bitrates: - - 13200 - cod: - opts: ["-max_band", "FB"] - dec: - c12: - type: evs - bitrates: - - 16400 - cod: - opts: ["-max_band", "FB"] - dec: - c13: - type: evs - bitrates: - - 24400 - cod: - opts: ["-max_band", "FB"] - dec: - c14: - type: evs - bitrates: - - 32000 - cod: - opts: ["-max_band", "FB"] - dec: - c15: - type: evs - bitrates: - - 48000 - cod: - opts: ["-max_band", "FB"] - dec: - c16: - type: evs - bitrates: - - 64000 - cod: - opts: ["-max_band", "FB"] - dec: - - c17: - type: evs - bitrates: - - 13200 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c18: - type: evs - bitrates: - - 16400 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c19: - type: evs - bitrates: - - 24400 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c20: - type: evs - bitrates: - - 32000 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - - c21: - type: evs - bitrates: - - 13200 - cod: - opts: ["-dtx", "-max_band", "FB"] - dec: - c22: - type: evs - bitrates: - - 16400 - cod: - opts: ["-dtx", "-max_band", "FB"] - dec: - c23: - type: evs - bitrates: - - 24400 - cod: - opts: ["-dtx", "-max_band", "FB"] - dec: - - ### IVAS condition ############################### - c24: - type: ivas - bitrates: - - 13200 - cod: - dec: - fmt: "ISM1" - c25: - type: ivas - bitrates: - - 16400 - cod: - dec: - fmt: "ISM1" - c26: - type: ivas - bitrates: - - 24400 - cod: - dec: - fmt: "ISM1" - c27: - type: ivas - bitrates: - - 32000 - cod: - dec: - fmt: "ISM1" - c28: - type: ivas - bitrates: - - 48000 - cod: - dec: - fmt: "ISM1" - c29: - type: ivas - bitrates: - - 64000 - cod: - dec: - fmt: "ISM1" - - c30: - type: ivas - bitrates: - - 13200 - cod: - dec: - fmt: "ISM1" - tx: - type: "FER" - error_rate: 5 - c31: - type: ivas - bitrates: - - 16400 - cod: - dec: - fmt: "ISM1" - tx: - type: "FER" - error_rate: 5 - c32: - type: ivas - bitrates: - - 24400 - cod: - dec: - fmt: "ISM1" - tx: - type: "FER" - error_rate: 5 - c33: - type: ivas - bitrates: - - 32000 - cod: - dec: - fmt: "ISM1" - tx: - type: "FER" - error_rate: 5 - - c34: - type: ivas - bitrates: - - 13200 - cod: - opts: ["-dtx"] - dec: - fmt: "ISM1" - c35: - type: ivas - bitrates: - - 16400 - cod: - opts: ["-dtx"] - dec: - fmt: "ISM1" - c36: - type: ivas - bitrates: - - 24400 - cod: - opts: ["-dtx"] - dec: - fmt: "ISM1" - - -################################################ -### Post-processing -################################################ -postprocessing: - fmt: "BINAURAL" - fs: 48000 - loudness: -26 diff --git a/experiments/selection/P800-6/config/P800-6-cat4.yml b/experiments/selection/P800-6/config/P800-6-cat4.yml deleted file mode 100644 index cd729ab00ad08df64857ac41593c22831875dace..0000000000000000000000000000000000000000 --- a/experiments/selection/P800-6/config/P800-6-cat4.yml +++ /dev/null @@ -1,304 +0,0 @@ ---- -################################################ -# General configuration -################################################ - -name: P800-6 -master_seed: 5 -prerun_seed: 2 - -input_path: "experiments/selection/P800-6/proc_input/cat4" -output_path: "experiments/selection/P800-6/proc_output/cat4" -use_windows_codec_binaries: true -condition_in_output_filename: true - -################################################ -### Input configuration -################################################ -input: - fmt: "ISM1" - # TODO: to be clarified in Test Plan - fs: 48000 - -################################################ -### Pre-processing on individual items -################################################ -preprocessing: - mask: "HP50" - loudness: -26 - window: 100 - -################################################ -### Pre-processing on whole signal(s) -################################################ -preprocessing_2: - concatenate_input: true - # concatenation_order: [] - preamble: 10000 - preamble_noise: true - repeat_signal: true - -################################################# -### Bitstream processing -################################################# - -################################################ -### Configuration for conditions under test -################################################ -conditions_to_generate: - ### Reference and anchor conditions ########################## - c01: - type: ref - c02: - type: mnru - q: 15 - c03: - type: mnru - q: 23 - c04: - type: mnru - q: 31 - c05: - type: mnru - q: 39 - c06: - type: mnru - q: 47 - c07: - type: esdru - alpha: 0.1 - c08: - type: esdru - alpha: 0.3 - c09: - type: esdru - alpha: 0.5 - c10: - type: esdru - alpha: 0.7 - - ### EVS condition ################################ - c11: - type: evs - bitrates: - - 13200 - cod: - opts: ["-max_band", "FB"] - dec: - c12: - type: evs - bitrates: - - 16400 - cod: - opts: ["-max_band", "FB"] - dec: - c13: - type: evs - bitrates: - - 24400 - cod: - opts: ["-max_band", "FB"] - dec: - c14: - type: evs - bitrates: - - 32000 - cod: - opts: ["-max_band", "FB"] - dec: - c15: - type: evs - bitrates: - - 48000 - cod: - opts: ["-max_band", "FB"] - dec: - c16: - type: evs - bitrates: - - 64000 - cod: - opts: ["-max_band", "FB"] - dec: - - c17: - type: evs - bitrates: - - 13200 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c18: - type: evs - bitrates: - - 16400 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c19: - type: evs - bitrates: - - 24400 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c20: - type: evs - bitrates: - - 32000 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - - c21: - type: evs - bitrates: - - 13200 - cod: - opts: ["-dtx", "-max_band", "FB"] - dec: - c22: - type: evs - bitrates: - - 16400 - cod: - opts: ["-dtx", "-max_band", "FB"] - dec: - c23: - type: evs - bitrates: - - 24400 - cod: - opts: ["-dtx", "-max_band", "FB"] - dec: - - ### IVAS condition ############################### - c24: - type: ivas - bitrates: - - 13200 - cod: - dec: - fmt: "ISM1" - c25: - type: ivas - bitrates: - - 16400 - cod: - dec: - fmt: "ISM1" - c26: - type: ivas - bitrates: - - 24400 - cod: - dec: - fmt: "ISM1" - c27: - type: ivas - bitrates: - - 32000 - cod: - dec: - fmt: "ISM1" - c28: - type: ivas - bitrates: - - 48000 - cod: - dec: - fmt: "ISM1" - c29: - type: ivas - bitrates: - - 64000 - cod: - dec: - fmt: "ISM1" - - c30: - type: ivas - bitrates: - - 13200 - cod: - dec: - fmt: "ISM1" - tx: - type: "FER" - error_rate: 5 - c31: - type: ivas - bitrates: - - 16400 - cod: - dec: - fmt: "ISM1" - tx: - type: "FER" - error_rate: 5 - c32: - type: ivas - bitrates: - - 24400 - cod: - dec: - fmt: "ISM1" - tx: - type: "FER" - error_rate: 5 - c33: - type: ivas - bitrates: - - 32000 - cod: - dec: - fmt: "ISM1" - tx: - type: "FER" - error_rate: 5 - - c34: - type: ivas - bitrates: - - 13200 - cod: - opts: ["-dtx"] - dec: - fmt: "ISM1" - c35: - type: ivas - bitrates: - - 16400 - cod: - opts: ["-dtx"] - dec: - fmt: "ISM1" - c36: - type: ivas - bitrates: - - 24400 - cod: - opts: ["-dtx"] - dec: - fmt: "ISM1" - - -################################################ -### Post-processing -################################################ -postprocessing: - fmt: "BINAURAL" - fs: 48000 - loudness: -26 diff --git a/experiments/selection/P800-6/config/P800-6-cat5.yml b/experiments/selection/P800-6/config/P800-6-cat5.yml deleted file mode 100644 index 744d9d1306f36625fbdac35da56fff0e85094c6b..0000000000000000000000000000000000000000 --- a/experiments/selection/P800-6/config/P800-6-cat5.yml +++ /dev/null @@ -1,304 +0,0 @@ ---- -################################################ -# General configuration -################################################ - -name: P800-6 -master_seed: 5 -prerun_seed: 2 - -input_path: "experiments/selection/P800-6/proc_input/cat5" -output_path: "experiments/selection/P800-6/proc_output/cat5" -use_windows_codec_binaries: true -condition_in_output_filename: true - -################################################ -### Input configuration -################################################ -input: - fmt: "ISM1" - # TODO: to be clarified in Test Plan - fs: 48000 - -################################################ -### Pre-processing on individual items -################################################ -preprocessing: - mask: "HP50" - loudness: -26 - window: 100 - -################################################ -### Pre-processing on whole signal(s) -################################################ -preprocessing_2: - concatenate_input: true - # concatenation_order: [] - preamble: 10000 - preamble_noise: true - repeat_signal: true - -################################################# -### Bitstream processing -################################################# - -################################################ -### Configuration for conditions under test -################################################ -conditions_to_generate: - ### Reference and anchor conditions ########################## - c01: - type: ref - c02: - type: mnru - q: 15 - c03: - type: mnru - q: 23 - c04: - type: mnru - q: 31 - c05: - type: mnru - q: 39 - c06: - type: mnru - q: 47 - c07: - type: esdru - alpha: 0.1 - c08: - type: esdru - alpha: 0.3 - c09: - type: esdru - alpha: 0.5 - c10: - type: esdru - alpha: 0.7 - - ### EVS condition ################################ - c11: - type: evs - bitrates: - - 13200 - cod: - opts: ["-max_band", "FB"] - dec: - c12: - type: evs - bitrates: - - 16400 - cod: - opts: ["-max_band", "FB"] - dec: - c13: - type: evs - bitrates: - - 24400 - cod: - opts: ["-max_band", "FB"] - dec: - c14: - type: evs - bitrates: - - 32000 - cod: - opts: ["-max_band", "FB"] - dec: - c15: - type: evs - bitrates: - - 48000 - cod: - opts: ["-max_band", "FB"] - dec: - c16: - type: evs - bitrates: - - 64000 - cod: - opts: ["-max_band", "FB"] - dec: - - c17: - type: evs - bitrates: - - 13200 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c18: - type: evs - bitrates: - - 16400 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c19: - type: evs - bitrates: - - 24400 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c20: - type: evs - bitrates: - - 32000 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - - c21: - type: evs - bitrates: - - 13200 - cod: - opts: ["-dtx", "-max_band", "FB"] - dec: - c22: - type: evs - bitrates: - - 16400 - cod: - opts: ["-dtx", "-max_band", "FB"] - dec: - c23: - type: evs - bitrates: - - 24400 - cod: - opts: ["-dtx", "-max_band", "FB"] - dec: - - ### IVAS condition ############################### - c24: - type: ivas - bitrates: - - 13200 - cod: - dec: - fmt: "ISM1" - c25: - type: ivas - bitrates: - - 16400 - cod: - dec: - fmt: "ISM1" - c26: - type: ivas - bitrates: - - 24400 - cod: - dec: - fmt: "ISM1" - c27: - type: ivas - bitrates: - - 32000 - cod: - dec: - fmt: "ISM1" - c28: - type: ivas - bitrates: - - 48000 - cod: - dec: - fmt: "ISM1" - c29: - type: ivas - bitrates: - - 64000 - cod: - dec: - fmt: "ISM1" - - c30: - type: ivas - bitrates: - - 13200 - cod: - dec: - fmt: "ISM1" - tx: - type: "FER" - error_rate: 5 - c31: - type: ivas - bitrates: - - 16400 - cod: - dec: - fmt: "ISM1" - tx: - type: "FER" - error_rate: 5 - c32: - type: ivas - bitrates: - - 24400 - cod: - dec: - fmt: "ISM1" - tx: - type: "FER" - error_rate: 5 - c33: - type: ivas - bitrates: - - 32000 - cod: - dec: - fmt: "ISM1" - tx: - type: "FER" - error_rate: 5 - - c34: - type: ivas - bitrates: - - 13200 - cod: - opts: ["-dtx"] - dec: - fmt: "ISM1" - c35: - type: ivas - bitrates: - - 16400 - cod: - opts: ["-dtx"] - dec: - fmt: "ISM1" - c36: - type: ivas - bitrates: - - 24400 - cod: - opts: ["-dtx"] - dec: - fmt: "ISM1" - - -################################################ -### Post-processing -################################################ -postprocessing: - fmt: "BINAURAL" - fs: 48000 - loudness: -26 diff --git a/experiments/selection/P800-6/config/P800-6-cat6.yml b/experiments/selection/P800-6/config/P800-6-cat6.yml deleted file mode 100644 index 1bd6f8a74eb0b13690e9cf99576873989fd101bd..0000000000000000000000000000000000000000 --- a/experiments/selection/P800-6/config/P800-6-cat6.yml +++ /dev/null @@ -1,304 +0,0 @@ ---- -################################################ -# General configuration -################################################ - -name: P800-6 -master_seed: 5 -prerun_seed: 2 - -input_path: "experiments/selection/P800-6/proc_input/cat6" -output_path: "experiments/selection/P800-6/proc_output/cat6" -use_windows_codec_binaries: true -condition_in_output_filename: true - -################################################ -### Input configuration -################################################ -input: - fmt: "ISM1" - # TODO: to be clarified in Test Plan - fs: 48000 - -################################################ -### Pre-processing on individual items -################################################ -preprocessing: - mask: "HP50" - loudness: -26 - window: 100 - -################################################ -### Pre-processing on whole signal(s) -################################################ -preprocessing_2: - concatenate_input: true - # concatenation_order: [] - preamble: 10000 - preamble_noise: true - repeat_signal: true - -################################################# -### Bitstream processing -################################################# - -################################################ -### Configuration for conditions under test -################################################ -conditions_to_generate: - ### Reference and anchor conditions ########################## - c01: - type: ref - c02: - type: mnru - q: 15 - c03: - type: mnru - q: 23 - c04: - type: mnru - q: 31 - c05: - type: mnru - q: 39 - c06: - type: mnru - q: 47 - c07: - type: esdru - alpha: 0.1 - c08: - type: esdru - alpha: 0.3 - c09: - type: esdru - alpha: 0.5 - c10: - type: esdru - alpha: 0.7 - - ### EVS condition ################################ - c11: - type: evs - bitrates: - - 13200 - cod: - opts: ["-max_band", "FB"] - dec: - c12: - type: evs - bitrates: - - 16400 - cod: - opts: ["-max_band", "FB"] - dec: - c13: - type: evs - bitrates: - - 24400 - cod: - opts: ["-max_band", "FB"] - dec: - c14: - type: evs - bitrates: - - 32000 - cod: - opts: ["-max_band", "FB"] - dec: - c15: - type: evs - bitrates: - - 48000 - cod: - opts: ["-max_band", "FB"] - dec: - c16: - type: evs - bitrates: - - 64000 - cod: - opts: ["-max_band", "FB"] - dec: - - c17: - type: evs - bitrates: - - 13200 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c18: - type: evs - bitrates: - - 16400 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c19: - type: evs - bitrates: - - 24400 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c20: - type: evs - bitrates: - - 32000 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - - c21: - type: evs - bitrates: - - 13200 - cod: - opts: ["-dtx", "-max_band", "FB"] - dec: - c22: - type: evs - bitrates: - - 16400 - cod: - opts: ["-dtx", "-max_band", "FB"] - dec: - c23: - type: evs - bitrates: - - 24400 - cod: - opts: ["-dtx", "-max_band", "FB"] - dec: - - ### IVAS condition ############################### - c24: - type: ivas - bitrates: - - 13200 - cod: - dec: - fmt: "ISM1" - c25: - type: ivas - bitrates: - - 16400 - cod: - dec: - fmt: "ISM1" - c26: - type: ivas - bitrates: - - 24400 - cod: - dec: - fmt: "ISM1" - c27: - type: ivas - bitrates: - - 32000 - cod: - dec: - fmt: "ISM1" - c28: - type: ivas - bitrates: - - 48000 - cod: - dec: - fmt: "ISM1" - c29: - type: ivas - bitrates: - - 64000 - cod: - dec: - fmt: "ISM1" - - c30: - type: ivas - bitrates: - - 13200 - cod: - dec: - fmt: "ISM1" - tx: - type: "FER" - error_rate: 5 - c31: - type: ivas - bitrates: - - 16400 - cod: - dec: - fmt: "ISM1" - tx: - type: "FER" - error_rate: 5 - c32: - type: ivas - bitrates: - - 24400 - cod: - dec: - fmt: "ISM1" - tx: - type: "FER" - error_rate: 5 - c33: - type: ivas - bitrates: - - 32000 - cod: - dec: - fmt: "ISM1" - tx: - type: "FER" - error_rate: 5 - - c34: - type: ivas - bitrates: - - 13200 - cod: - opts: ["-dtx"] - dec: - fmt: "ISM1" - c35: - type: ivas - bitrates: - - 16400 - cod: - opts: ["-dtx"] - dec: - fmt: "ISM1" - c36: - type: ivas - bitrates: - - 24400 - cod: - opts: ["-dtx"] - dec: - fmt: "ISM1" - - -################################################ -### Post-processing -################################################ -postprocessing: - fmt: "BINAURAL" - fs: 48000 - loudness: -26 diff --git a/experiments/selection/P800-6/config/P800-6-cat1.yml b/experiments/selection/P800-6/config/P800-6.yml similarity index 97% rename from experiments/selection/P800-6/config/P800-6-cat1.yml rename to experiments/selection/P800-6/config/P800-6.yml index 8ff35479d00036277e8c37df4fd9feccda58f2e2..2dd0f1c20016736b9be3219085addb4e40287c89 100644 --- a/experiments/selection/P800-6/config/P800-6-cat1.yml +++ b/experiments/selection/P800-6/config/P800-6.yml @@ -7,8 +7,8 @@ name: P800-6 master_seed: 5 prerun_seed: 2 -input_path: "experiments/selection/P800-6/proc_input/cat1" -output_path: "experiments/selection/P800-6/proc_output/cat1" +input_path: "experiments/selection/P800-6/proc_input" +output_path: "experiments/selection/P800-6/proc_output" use_windows_codec_binaries: true condition_in_output_filename: true diff --git a/experiments/selection/P800-7/config/P800-7-cat2.yml b/experiments/selection/P800-7/config/P800-7-cat2.yml deleted file mode 100644 index 77760adff0f4ea09e6527aa7c82be9482a4dc040..0000000000000000000000000000000000000000 --- a/experiments/selection/P800-7/config/P800-7-cat2.yml +++ /dev/null @@ -1,305 +0,0 @@ ---- -################################################ -# General configuration -################################################ - -name: P800-7 -master_seed: 5 -prerun_seed: 2 - -input_path: "experiments/selection/P800-7/proc_input/cat2" -output_path: "experiments/selection/P800-7/proc_output/cat2" -use_windows_codec_binaries: true -condition_in_output_filename: true - -################################################ -### Input configuration -################################################ -input: - fmt: "ISM2" - # TODO: to be clarified in Test Plan - fs: 48000 - -################################################ -### Pre-processing on individual items -################################################ -preprocessing: - mask: "HP50" - loudness: -26 - window: 100 - -################################################ -### Pre-processing on whole signal(s) -################################################ -preprocessing_2: - concatenate_input: true - # concatenation_order: [] - preamble: 10000 - preamble_noise: true - repeat_signal: true - -################################################# -### Bitstream processing -################################################# - -################################################ -### Configuration for conditions under test -################################################ -conditions_to_generate: - ### Reference and anchor conditions ########################## - c01: - type: ref - c02: - type: mnru - q: 15 - c03: - type: mnru - q: 23 - c04: - type: mnru - q: 31 - c05: - type: mnru - q: 39 - c06: - type: mnru - q: 47 - c07: - type: esdru - alpha: 0.1 - c08: - type: esdru - alpha: 0.3 - c09: - type: esdru - alpha: 0.5 - c10: - type: esdru - alpha: 0.7 - - ### EVS condition ################################ - c11: - type: evs - bitrates: - - 8000 - cod: - opts: ["-max_band", "FB"] - dec: - c12: - type: evs - bitrates: - - 13200 - cod: - opts: ["-max_band", "FB"] - dec: - c13: - type: evs - bitrates: - - 16400 - cod: - opts: ["-max_band", "FB"] - dec: - c14: - type: evs - bitrates: - - 24400 - cod: - opts: ["-max_band", "FB"] - dec: - c15: - type: evs - bitrates: - - 32000 - cod: - opts: ["-max_band", "FB"] - dec: - - c16: - type: evs - bitrates: - - 8000 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c17: - type: evs - bitrates: - - 13200 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c18: - type: evs - bitrates: - - 16400 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c19: - type: evs - bitrates: - - 24400 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - - c20: - type: evs - bitrates: - - 8000 - cod: - opts: ["-dtx", "-max_band", "FB"] - dec: - c21: - type: evs - bitrates: - - 13200 - cod: - opts: ["-dtx", "-max_band", "FB"] - dec: - c22: - type: evs - bitrates: - - 16400 - cod: - opts: ["-dtx", "-max_band", "FB"] - dec: - c23: - type: evs - bitrates: - - 24400 - cod: - opts: ["-dtx", "-max_band", "FB"] - dec: - - ### IVAS condition ############################### - c24: - type: ivas - bitrates: - - 16400 - cod: - dec: - fmt: "ISM2" - c25: - type: ivas - bitrates: - - 24400 - cod: - dec: - fmt: "ISM2" - c26: - type: ivas - bitrates: - - 32000 - cod: - dec: - fmt: "ISM2" - c27: - type: ivas - bitrates: - - 48000 - cod: - dec: - fmt: "ISM2" - c28: - type: ivas - bitrates: - - 64000 - cod: - dec: - fmt: "ISM2" - - c29: - type: ivas - bitrates: - - 16400 - cod: - dec: - fmt: "ISM2" - tx: - type: "FER" - error_rate: 5 - c30: - type: ivas - bitrates: - - 24400 - cod: - dec: - fmt: "ISM2" - tx: - type: "FER" - error_rate: 5 - c31: - type: ivas - bitrates: - - 32000 - cod: - dec: - fmt: "ISM2" - tx: - type: "FER" - error_rate: 5 - c32: - type: ivas - bitrates: - - 48000 - cod: - dec: - fmt: "ISM2" - tx: - type: "FER" - error_rate: 5 - - c33: - type: ivas - bitrates: - - 16400 - cod: - opts: ["-dtx"] - dec: - fmt: "ISM2" - c34: - type: ivas - bitrates: - - 24400 - cod: - opts: ["-dtx"] - dec: - fmt: "ISM2" - c35: - type: ivas - bitrates: - - 32000 - cod: - opts: ["-dtx"] - dec: - fmt: "ISM2" - c36: - type: ivas - bitrates: - - 48000 - cod: - opts: ["-dtx"] - dec: - fmt: "ISM2" - - -################################################ -### Post-processing -################################################ -postprocessing: - fmt: "BINAURAL" - fs: 48000 - loudness: -26 diff --git a/experiments/selection/P800-7/config/P800-7-cat3.yml b/experiments/selection/P800-7/config/P800-7-cat3.yml deleted file mode 100644 index 48692ae93bf1ca04e82f9bdaba374f3f71219f94..0000000000000000000000000000000000000000 --- a/experiments/selection/P800-7/config/P800-7-cat3.yml +++ /dev/null @@ -1,305 +0,0 @@ ---- -################################################ -# General configuration -################################################ - -name: P800-7 -master_seed: 5 -prerun_seed: 2 - -input_path: "experiments/selection/P800-7/proc_input/cat3" -output_path: "experiments/selection/P800-7/proc_output/cat3" -use_windows_codec_binaries: true -condition_in_output_filename: true - -################################################ -### Input configuration -################################################ -input: - fmt: "ISM2" - # TODO: to be clarified in Test Plan - fs: 48000 - -################################################ -### Pre-processing on individual items -################################################ -preprocessing: - mask: "HP50" - loudness: -26 - window: 100 - -################################################ -### Pre-processing on whole signal(s) -################################################ -preprocessing_2: - concatenate_input: true - # concatenation_order: [] - preamble: 10000 - preamble_noise: true - repeat_signal: true - -################################################# -### Bitstream processing -################################################# - -################################################ -### Configuration for conditions under test -################################################ -conditions_to_generate: - ### Reference and anchor conditions ########################## - c01: - type: ref - c02: - type: mnru - q: 15 - c03: - type: mnru - q: 23 - c04: - type: mnru - q: 31 - c05: - type: mnru - q: 39 - c06: - type: mnru - q: 47 - c07: - type: esdru - alpha: 0.1 - c08: - type: esdru - alpha: 0.3 - c09: - type: esdru - alpha: 0.5 - c10: - type: esdru - alpha: 0.7 - - ### EVS condition ################################ - c11: - type: evs - bitrates: - - 8000 - cod: - opts: ["-max_band", "FB"] - dec: - c12: - type: evs - bitrates: - - 13200 - cod: - opts: ["-max_band", "FB"] - dec: - c13: - type: evs - bitrates: - - 16400 - cod: - opts: ["-max_band", "FB"] - dec: - c14: - type: evs - bitrates: - - 24400 - cod: - opts: ["-max_band", "FB"] - dec: - c15: - type: evs - bitrates: - - 32000 - cod: - opts: ["-max_band", "FB"] - dec: - - c16: - type: evs - bitrates: - - 8000 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c17: - type: evs - bitrates: - - 13200 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c18: - type: evs - bitrates: - - 16400 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c19: - type: evs - bitrates: - - 24400 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - - c20: - type: evs - bitrates: - - 8000 - cod: - opts: ["-dtx", "-max_band", "FB"] - dec: - c21: - type: evs - bitrates: - - 13200 - cod: - opts: ["-dtx", "-max_band", "FB"] - dec: - c22: - type: evs - bitrates: - - 16400 - cod: - opts: ["-dtx", "-max_band", "FB"] - dec: - c23: - type: evs - bitrates: - - 24400 - cod: - opts: ["-dtx", "-max_band", "FB"] - dec: - - ### IVAS condition ############################### - c24: - type: ivas - bitrates: - - 16400 - cod: - dec: - fmt: "ISM2" - c25: - type: ivas - bitrates: - - 24400 - cod: - dec: - fmt: "ISM2" - c26: - type: ivas - bitrates: - - 32000 - cod: - dec: - fmt: "ISM2" - c27: - type: ivas - bitrates: - - 48000 - cod: - dec: - fmt: "ISM2" - c28: - type: ivas - bitrates: - - 64000 - cod: - dec: - fmt: "ISM2" - - c29: - type: ivas - bitrates: - - 16400 - cod: - dec: - fmt: "ISM2" - tx: - type: "FER" - error_rate: 5 - c30: - type: ivas - bitrates: - - 24400 - cod: - dec: - fmt: "ISM2" - tx: - type: "FER" - error_rate: 5 - c31: - type: ivas - bitrates: - - 32000 - cod: - dec: - fmt: "ISM2" - tx: - type: "FER" - error_rate: 5 - c32: - type: ivas - bitrates: - - 48000 - cod: - dec: - fmt: "ISM2" - tx: - type: "FER" - error_rate: 5 - - c33: - type: ivas - bitrates: - - 16400 - cod: - opts: ["-dtx"] - dec: - fmt: "ISM2" - c34: - type: ivas - bitrates: - - 24400 - cod: - opts: ["-dtx"] - dec: - fmt: "ISM2" - c35: - type: ivas - bitrates: - - 32000 - cod: - opts: ["-dtx"] - dec: - fmt: "ISM2" - c36: - type: ivas - bitrates: - - 48000 - cod: - opts: ["-dtx"] - dec: - fmt: "ISM2" - - -################################################ -### Post-processing -################################################ -postprocessing: - fmt: "BINAURAL" - fs: 48000 - loudness: -26 diff --git a/experiments/selection/P800-7/config/P800-7-cat4.yml b/experiments/selection/P800-7/config/P800-7-cat4.yml deleted file mode 100644 index ed17e8feefd9167bceb60c01e1536d368eb41f1b..0000000000000000000000000000000000000000 --- a/experiments/selection/P800-7/config/P800-7-cat4.yml +++ /dev/null @@ -1,305 +0,0 @@ ---- -################################################ -# General configuration -################################################ - -name: P800-7 -master_seed: 5 -prerun_seed: 2 - -input_path: "experiments/selection/P800-7/proc_input/cat4" -output_path: "experiments/selection/P800-7/proc_output/cat4" -use_windows_codec_binaries: true -condition_in_output_filename: true - -################################################ -### Input configuration -################################################ -input: - fmt: "ISM2" - # TODO: to be clarified in Test Plan - fs: 48000 - -################################################ -### Pre-processing on individual items -################################################ -preprocessing: - mask: "HP50" - loudness: -26 - window: 100 - -################################################ -### Pre-processing on whole signal(s) -################################################ -preprocessing_2: - concatenate_input: true - # concatenation_order: [] - preamble: 10000 - preamble_noise: true - repeat_signal: true - -################################################# -### Bitstream processing -################################################# - -################################################ -### Configuration for conditions under test -################################################ -conditions_to_generate: - ### Reference and anchor conditions ########################## - c01: - type: ref - c02: - type: mnru - q: 15 - c03: - type: mnru - q: 23 - c04: - type: mnru - q: 31 - c05: - type: mnru - q: 39 - c06: - type: mnru - q: 47 - c07: - type: esdru - alpha: 0.1 - c08: - type: esdru - alpha: 0.3 - c09: - type: esdru - alpha: 0.5 - c10: - type: esdru - alpha: 0.7 - - ### EVS condition ################################ - c11: - type: evs - bitrates: - - 8000 - cod: - opts: ["-max_band", "FB"] - dec: - c12: - type: evs - bitrates: - - 13200 - cod: - opts: ["-max_band", "FB"] - dec: - c13: - type: evs - bitrates: - - 16400 - cod: - opts: ["-max_band", "FB"] - dec: - c14: - type: evs - bitrates: - - 24400 - cod: - opts: ["-max_band", "FB"] - dec: - c15: - type: evs - bitrates: - - 32000 - cod: - opts: ["-max_band", "FB"] - dec: - - c16: - type: evs - bitrates: - - 8000 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c17: - type: evs - bitrates: - - 13200 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c18: - type: evs - bitrates: - - 16400 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c19: - type: evs - bitrates: - - 24400 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - - c20: - type: evs - bitrates: - - 8000 - cod: - opts: ["-dtx", "-max_band", "FB"] - dec: - c21: - type: evs - bitrates: - - 13200 - cod: - opts: ["-dtx", "-max_band", "FB"] - dec: - c22: - type: evs - bitrates: - - 16400 - cod: - opts: ["-dtx", "-max_band", "FB"] - dec: - c23: - type: evs - bitrates: - - 24400 - cod: - opts: ["-dtx", "-max_band", "FB"] - dec: - - ### IVAS condition ############################### - c24: - type: ivas - bitrates: - - 16400 - cod: - dec: - fmt: "ISM2" - c25: - type: ivas - bitrates: - - 24400 - cod: - dec: - fmt: "ISM2" - c26: - type: ivas - bitrates: - - 32000 - cod: - dec: - fmt: "ISM2" - c27: - type: ivas - bitrates: - - 48000 - cod: - dec: - fmt: "ISM2" - c28: - type: ivas - bitrates: - - 64000 - cod: - dec: - fmt: "ISM2" - - c29: - type: ivas - bitrates: - - 16400 - cod: - dec: - fmt: "ISM2" - tx: - type: "FER" - error_rate: 5 - c30: - type: ivas - bitrates: - - 24400 - cod: - dec: - fmt: "ISM2" - tx: - type: "FER" - error_rate: 5 - c31: - type: ivas - bitrates: - - 32000 - cod: - dec: - fmt: "ISM2" - tx: - type: "FER" - error_rate: 5 - c32: - type: ivas - bitrates: - - 48000 - cod: - dec: - fmt: "ISM2" - tx: - type: "FER" - error_rate: 5 - - c33: - type: ivas - bitrates: - - 16400 - cod: - opts: ["-dtx"] - dec: - fmt: "ISM2" - c34: - type: ivas - bitrates: - - 24400 - cod: - opts: ["-dtx"] - dec: - fmt: "ISM2" - c35: - type: ivas - bitrates: - - 32000 - cod: - opts: ["-dtx"] - dec: - fmt: "ISM2" - c36: - type: ivas - bitrates: - - 48000 - cod: - opts: ["-dtx"] - dec: - fmt: "ISM2" - - -################################################ -### Post-processing -################################################ -postprocessing: - fmt: "BINAURAL" - fs: 48000 - loudness: -26 diff --git a/experiments/selection/P800-7/config/P800-7-cat5.yml b/experiments/selection/P800-7/config/P800-7-cat5.yml deleted file mode 100644 index af2bc879b3b6cb4a34738a6a3d8b79f99384dd87..0000000000000000000000000000000000000000 --- a/experiments/selection/P800-7/config/P800-7-cat5.yml +++ /dev/null @@ -1,305 +0,0 @@ ---- -################################################ -# General configuration -################################################ - -name: P800-7 -master_seed: 5 -prerun_seed: 2 - -input_path: "experiments/selection/P800-7/proc_input/cat5" -output_path: "experiments/selection/P800-7/proc_output/cat5" -use_windows_codec_binaries: true -condition_in_output_filename: true - -################################################ -### Input configuration -################################################ -input: - fmt: "ISM2" - # TODO: to be clarified in Test Plan - fs: 48000 - -################################################ -### Pre-processing on individual items -################################################ -preprocessing: - mask: "HP50" - loudness: -26 - window: 100 - -################################################ -### Pre-processing on whole signal(s) -################################################ -preprocessing_2: - concatenate_input: true - # concatenation_order: [] - preamble: 10000 - preamble_noise: true - repeat_signal: true - -################################################# -### Bitstream processing -################################################# - -################################################ -### Configuration for conditions under test -################################################ -conditions_to_generate: - ### Reference and anchor conditions ########################## - c01: - type: ref - c02: - type: mnru - q: 15 - c03: - type: mnru - q: 23 - c04: - type: mnru - q: 31 - c05: - type: mnru - q: 39 - c06: - type: mnru - q: 47 - c07: - type: esdru - alpha: 0.1 - c08: - type: esdru - alpha: 0.3 - c09: - type: esdru - alpha: 0.5 - c10: - type: esdru - alpha: 0.7 - - ### EVS condition ################################ - c11: - type: evs - bitrates: - - 8000 - cod: - opts: ["-max_band", "FB"] - dec: - c12: - type: evs - bitrates: - - 13200 - cod: - opts: ["-max_band", "FB"] - dec: - c13: - type: evs - bitrates: - - 16400 - cod: - opts: ["-max_band", "FB"] - dec: - c14: - type: evs - bitrates: - - 24400 - cod: - opts: ["-max_band", "FB"] - dec: - c15: - type: evs - bitrates: - - 32000 - cod: - opts: ["-max_band", "FB"] - dec: - - c16: - type: evs - bitrates: - - 8000 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c17: - type: evs - bitrates: - - 13200 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c18: - type: evs - bitrates: - - 16400 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c19: - type: evs - bitrates: - - 24400 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - - c20: - type: evs - bitrates: - - 8000 - cod: - opts: ["-dtx", "-max_band", "FB"] - dec: - c21: - type: evs - bitrates: - - 13200 - cod: - opts: ["-dtx", "-max_band", "FB"] - dec: - c22: - type: evs - bitrates: - - 16400 - cod: - opts: ["-dtx", "-max_band", "FB"] - dec: - c23: - type: evs - bitrates: - - 24400 - cod: - opts: ["-dtx", "-max_band", "FB"] - dec: - - ### IVAS condition ############################### - c24: - type: ivas - bitrates: - - 16400 - cod: - dec: - fmt: "ISM2" - c25: - type: ivas - bitrates: - - 24400 - cod: - dec: - fmt: "ISM2" - c26: - type: ivas - bitrates: - - 32000 - cod: - dec: - fmt: "ISM2" - c27: - type: ivas - bitrates: - - 48000 - cod: - dec: - fmt: "ISM2" - c28: - type: ivas - bitrates: - - 64000 - cod: - dec: - fmt: "ISM2" - - c29: - type: ivas - bitrates: - - 16400 - cod: - dec: - fmt: "ISM2" - tx: - type: "FER" - error_rate: 5 - c30: - type: ivas - bitrates: - - 24400 - cod: - dec: - fmt: "ISM2" - tx: - type: "FER" - error_rate: 5 - c31: - type: ivas - bitrates: - - 32000 - cod: - dec: - fmt: "ISM2" - tx: - type: "FER" - error_rate: 5 - c32: - type: ivas - bitrates: - - 48000 - cod: - dec: - fmt: "ISM2" - tx: - type: "FER" - error_rate: 5 - - c33: - type: ivas - bitrates: - - 16400 - cod: - opts: ["-dtx"] - dec: - fmt: "ISM2" - c34: - type: ivas - bitrates: - - 24400 - cod: - opts: ["-dtx"] - dec: - fmt: "ISM2" - c35: - type: ivas - bitrates: - - 32000 - cod: - opts: ["-dtx"] - dec: - fmt: "ISM2" - c36: - type: ivas - bitrates: - - 48000 - cod: - opts: ["-dtx"] - dec: - fmt: "ISM2" - - -################################################ -### Post-processing -################################################ -postprocessing: - fmt: "BINAURAL" - fs: 48000 - loudness: -26 diff --git a/experiments/selection/P800-7/config/P800-7-cat6.yml b/experiments/selection/P800-7/config/P800-7-cat6.yml deleted file mode 100644 index c7e5371b5c512792d09c1c4f0d2ad3b62143c099..0000000000000000000000000000000000000000 --- a/experiments/selection/P800-7/config/P800-7-cat6.yml +++ /dev/null @@ -1,305 +0,0 @@ ---- -################################################ -# General configuration -################################################ - -name: P800-7 -master_seed: 5 -prerun_seed: 2 - -input_path: "experiments/selection/P800-7/proc_input/cat6" -output_path: "experiments/selection/P800-7/proc_output/cat6" -use_windows_codec_binaries: true -condition_in_output_filename: true - -################################################ -### Input configuration -################################################ -input: - fmt: "ISM2" - # TODO: to be clarified in Test Plan - fs: 48000 - -################################################ -### Pre-processing on individual items -################################################ -preprocessing: - mask: "HP50" - loudness: -26 - window: 100 - -################################################ -### Pre-processing on whole signal(s) -################################################ -preprocessing_2: - concatenate_input: true - # concatenation_order: [] - preamble: 10000 - preamble_noise: true - repeat_signal: true - -################################################# -### Bitstream processing -################################################# - -################################################ -### Configuration for conditions under test -################################################ -conditions_to_generate: - ### Reference and anchor conditions ########################## - c01: - type: ref - c02: - type: mnru - q: 15 - c03: - type: mnru - q: 23 - c04: - type: mnru - q: 31 - c05: - type: mnru - q: 39 - c06: - type: mnru - q: 47 - c07: - type: esdru - alpha: 0.1 - c08: - type: esdru - alpha: 0.3 - c09: - type: esdru - alpha: 0.5 - c10: - type: esdru - alpha: 0.7 - - ### EVS condition ################################ - c11: - type: evs - bitrates: - - 8000 - cod: - opts: ["-max_band", "FB"] - dec: - c12: - type: evs - bitrates: - - 13200 - cod: - opts: ["-max_band", "FB"] - dec: - c13: - type: evs - bitrates: - - 16400 - cod: - opts: ["-max_band", "FB"] - dec: - c14: - type: evs - bitrates: - - 24400 - cod: - opts: ["-max_band", "FB"] - dec: - c15: - type: evs - bitrates: - - 32000 - cod: - opts: ["-max_band", "FB"] - dec: - - c16: - type: evs - bitrates: - - 8000 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c17: - type: evs - bitrates: - - 13200 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c18: - type: evs - bitrates: - - 16400 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c19: - type: evs - bitrates: - - 24400 - cod: - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - - c20: - type: evs - bitrates: - - 8000 - cod: - opts: ["-dtx", "-max_band", "FB"] - dec: - c21: - type: evs - bitrates: - - 13200 - cod: - opts: ["-dtx", "-max_band", "FB"] - dec: - c22: - type: evs - bitrates: - - 16400 - cod: - opts: ["-dtx", "-max_band", "FB"] - dec: - c23: - type: evs - bitrates: - - 24400 - cod: - opts: ["-dtx", "-max_band", "FB"] - dec: - - ### IVAS condition ############################### - c24: - type: ivas - bitrates: - - 16400 - cod: - dec: - fmt: "ISM2" - c25: - type: ivas - bitrates: - - 24400 - cod: - dec: - fmt: "ISM2" - c26: - type: ivas - bitrates: - - 32000 - cod: - dec: - fmt: "ISM2" - c27: - type: ivas - bitrates: - - 48000 - cod: - dec: - fmt: "ISM2" - c28: - type: ivas - bitrates: - - 64000 - cod: - dec: - fmt: "ISM2" - - c29: - type: ivas - bitrates: - - 16400 - cod: - dec: - fmt: "ISM2" - tx: - type: "FER" - error_rate: 5 - c30: - type: ivas - bitrates: - - 24400 - cod: - dec: - fmt: "ISM2" - tx: - type: "FER" - error_rate: 5 - c31: - type: ivas - bitrates: - - 32000 - cod: - dec: - fmt: "ISM2" - tx: - type: "FER" - error_rate: 5 - c32: - type: ivas - bitrates: - - 48000 - cod: - dec: - fmt: "ISM2" - tx: - type: "FER" - error_rate: 5 - - c33: - type: ivas - bitrates: - - 16400 - cod: - opts: ["-dtx"] - dec: - fmt: "ISM2" - c34: - type: ivas - bitrates: - - 24400 - cod: - opts: ["-dtx"] - dec: - fmt: "ISM2" - c35: - type: ivas - bitrates: - - 32000 - cod: - opts: ["-dtx"] - dec: - fmt: "ISM2" - c36: - type: ivas - bitrates: - - 48000 - cod: - opts: ["-dtx"] - dec: - fmt: "ISM2" - - -################################################ -### Post-processing -################################################ -postprocessing: - fmt: "BINAURAL" - fs: 48000 - loudness: -26 diff --git a/experiments/selection/P800-7/config/P800-7-cat1.yml b/experiments/selection/P800-7/config/P800-7.yml similarity index 97% rename from experiments/selection/P800-7/config/P800-7-cat1.yml rename to experiments/selection/P800-7/config/P800-7.yml index 10e5037055da3fbf188553ed9532ceab9332e3ae..b584a724c42c0a652fb41276dd33950ca3def407 100644 --- a/experiments/selection/P800-7/config/P800-7-cat1.yml +++ b/experiments/selection/P800-7/config/P800-7.yml @@ -7,8 +7,8 @@ name: P800-7 master_seed: 5 prerun_seed: 2 -input_path: "experiments/selection/P800-7/proc_input/cat1" -output_path: "experiments/selection/P800-7/proc_output/cat1" +input_path: "experiments/selection/P800-7/proc_input" +output_path: "experiments/selection/P800-7/proc_output" use_windows_codec_binaries: true condition_in_output_filename: true diff --git a/experiments/selection/P800-8/config/P800-8-cat2.yml b/experiments/selection/P800-8/config/P800-8-cat2.yml deleted file mode 100644 index e9aa85440b589e1085780c70cab4fffdc2849f7c..0000000000000000000000000000000000000000 --- a/experiments/selection/P800-8/config/P800-8-cat2.yml +++ /dev/null @@ -1,344 +0,0 @@ ---- -################################################ -# General configuration -################################################ - -name: P800-8 -master_seed: 5 -prerun_seed: 2 - -input_path: "experiments/selection/P800-8/proc_input/cat2" -output_path: "experiments/selection/P800-8/proc_output/cat2" -use_windows_codec_binaries: true -condition_in_output_filename: true - -################################################ -### Input configuration -################################################ -input: - fmt: "FOA" - fs: 48000 - -################################################ -### Pre-processing on individual items -################################################ -preprocessing: - mask: "HP50" - loudness: -26 - window: 100 - -################################################ -### Pre-processing on whole signal(s) -################################################ -preprocessing_2: - concatenate_input: true - # concatenation_order: [] - preamble: 10000 - preamble_noise: true - repeat_signal: true - background_noise: - ### REQUIRED: SNR for background noise in dB - snr: 45 - ### REQUIRED: Path to background noise, must have same format and sampling rate as input signal(s) - background_noise_path: "experiments/selection/P800-8/background_noise/background_noise_cat2.wav" - -################################################# -### Bitstream processing -################################################# - -################################################ -### Configuration for conditions under test -################################################ -conditions_to_generate: - ### Reference and anchor conditions ########################## - c01: - type: ref - c02: - type: mnru - q: 32 - c03: - type: mnru - q: 28 - c04: - type: mnru - q: 24 - c05: - type: mnru - q: 20 - c06: - type: esdru - alpha: 0.8 - c07: - type: esdru - alpha: 0.6 - c08: - type: esdru - alpha: 0.4 - - # ### EVS condition ################################ - c09: - type: evs - bitrates: - - 7200 - cod: - fmt: "PLANARFOA" - opts: ["-max_band", "FB"] - dec: - c10: - type: evs - bitrates: - - 7200 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c11: - type: evs - bitrates: - - 8000 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c12: - type: evs - bitrates: - - 9600 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c13: - type: evs - bitrates: - - 16400 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c14: - type: evs - bitrates: - - 24400 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c15: - type: evs - bitrates: - - 7200 - cod: - fmt: "MASA2" - opts: ["-max_band", "FB"] - dec: - c16: - type: evs - bitrates: - - 8000 - cod: - fmt: "MASA2" - opts: ["-max_band", "FB"] - dec: - c17: - type: evs - bitrates: - - 9600 - cod: - fmt: "MASA2" - opts: ["-max_band", "FB"] - dec: - c18: - type: evs - bitrates: - - 16400 - cod: - fmt: "MASA2" - opts: ["-max_band", "FB"] - dec: - c19: - type: evs - bitrates: - - 24400 - cod: - fmt: "MASA2" - opts: ["-max_band", "FB"] - dec: - - c20: - type: evs - bitrates: - - 7200 - cod: - fmt: "PLANARFOA" - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c21: - type: evs - bitrates: - - 7200 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c22: - type: evs - bitrates: - - 8000 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c23: - type: evs - bitrates: - - 16400 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c24: - type: evs - bitrates: - - 24400 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - - ### IVAS condition ############################### - c25: - type: ivas - bitrates: - - 13200 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - c26: - type: ivas - bitrates: - - 16400 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - c27: - type: ivas - bitrates: - - 24400 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - c28: - type: ivas - bitrates: - - 32000 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - c29: - type: ivas - bitrates: - - 48000 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - c30: - type: ivas - bitrates: - - 64000 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - c31: - type: ivas - bitrates: - - 80000 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - - c32: - type: ivas - bitrates: - - 13200 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - tx: - type: "FER" - error_rate: 5 - c33: - type: ivas - bitrates: - - 16400 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - tx: - type: "FER" - error_rate: 5 - c34: - type: ivas - bitrates: - - 24400 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - tx: - type: "FER" - error_rate: 5 - c35: - type: ivas - bitrates: - - 48000 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - tx: - type: "FER" - error_rate: 5 - c36: - type: ivas - bitrates: - - 64000 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - tx: - type: "FER" - error_rate: 5 - -################################################ -### Post-processing -################################################ -postprocessing: - fmt: ["MASA2", "BINAURAL"] - fs: 48000 - loudness: -26 diff --git a/experiments/selection/P800-8/config/P800-8-cat3.yml b/experiments/selection/P800-8/config/P800-8-cat3.yml deleted file mode 100644 index 6496116966e09091a593d3a744fd82ae7e107bdc..0000000000000000000000000000000000000000 --- a/experiments/selection/P800-8/config/P800-8-cat3.yml +++ /dev/null @@ -1,344 +0,0 @@ ---- -################################################ -# General configuration -################################################ - -name: P800-8 -master_seed: 5 -prerun_seed: 2 - -input_path: "experiments/selection/P800-8/proc_input/cat3" -output_path: "experiments/selection/P800-8/proc_output/cat3" -use_windows_codec_binaries: true -condition_in_output_filename: true - -################################################ -### Input configuration -################################################ -input: - fmt: "FOA" - fs: 48000 - -################################################ -### Pre-processing on individual items -################################################ -preprocessing: - mask: "HP50" - loudness: -26 - window: 100 - -################################################ -### Pre-processing on whole signal(s) -################################################ -preprocessing_2: - concatenate_input: true - # concatenation_order: [] - preamble: 10000 - preamble_noise: true - repeat_signal: true - background_noise: - ### REQUIRED: SNR for background noise in dB - snr: 45 - ### REQUIRED: Path to background noise, must have same format and sampling rate as input signal(s) - background_noise_path: "experiments/selection/P800-8/background_noise/background_noise_cat3.wav" - -################################################# -### Bitstream processing -################################################# - -################################################ -### Configuration for conditions under test -################################################ -conditions_to_generate: - ### Reference and anchor conditions ########################## - c01: - type: ref - c02: - type: mnru - q: 32 - c03: - type: mnru - q: 28 - c04: - type: mnru - q: 24 - c05: - type: mnru - q: 20 - c06: - type: esdru - alpha: 0.8 - c07: - type: esdru - alpha: 0.6 - c08: - type: esdru - alpha: 0.4 - - # ### EVS condition ################################ - c09: - type: evs - bitrates: - - 7200 - cod: - fmt: "PLANARFOA" - opts: ["-max_band", "FB"] - dec: - c10: - type: evs - bitrates: - - 7200 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c11: - type: evs - bitrates: - - 8000 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c12: - type: evs - bitrates: - - 9600 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c13: - type: evs - bitrates: - - 16400 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c14: - type: evs - bitrates: - - 24400 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c15: - type: evs - bitrates: - - 7200 - cod: - fmt: "MASA2" - opts: ["-max_band", "FB"] - dec: - c16: - type: evs - bitrates: - - 8000 - cod: - fmt: "MASA2" - opts: ["-max_band", "FB"] - dec: - c17: - type: evs - bitrates: - - 9600 - cod: - fmt: "MASA2" - opts: ["-max_band", "FB"] - dec: - c18: - type: evs - bitrates: - - 16400 - cod: - fmt: "MASA2" - opts: ["-max_band", "FB"] - dec: - c19: - type: evs - bitrates: - - 24400 - cod: - fmt: "MASA2" - opts: ["-max_band", "FB"] - dec: - - c20: - type: evs - bitrates: - - 7200 - cod: - fmt: "PLANARFOA" - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c21: - type: evs - bitrates: - - 7200 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c22: - type: evs - bitrates: - - 8000 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c23: - type: evs - bitrates: - - 16400 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c24: - type: evs - bitrates: - - 24400 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - - ### IVAS condition ############################### - c25: - type: ivas - bitrates: - - 13200 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - c26: - type: ivas - bitrates: - - 16400 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - c27: - type: ivas - bitrates: - - 24400 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - c28: - type: ivas - bitrates: - - 32000 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - c29: - type: ivas - bitrates: - - 48000 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - c30: - type: ivas - bitrates: - - 64000 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - c31: - type: ivas - bitrates: - - 80000 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - - c32: - type: ivas - bitrates: - - 13200 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - tx: - type: "FER" - error_rate: 5 - c33: - type: ivas - bitrates: - - 16400 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - tx: - type: "FER" - error_rate: 5 - c34: - type: ivas - bitrates: - - 24400 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - tx: - type: "FER" - error_rate: 5 - c35: - type: ivas - bitrates: - - 48000 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - tx: - type: "FER" - error_rate: 5 - c36: - type: ivas - bitrates: - - 64000 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - tx: - type: "FER" - error_rate: 5 - -################################################ -### Post-processing -################################################ -postprocessing: - fmt: ["MASA2", "BINAURAL"] - fs: 48000 - loudness: -26 diff --git a/experiments/selection/P800-8/config/P800-8-cat4.yml b/experiments/selection/P800-8/config/P800-8-cat4.yml deleted file mode 100644 index 4c4c5429ccacb756fc51b173f36b3cac4311af10..0000000000000000000000000000000000000000 --- a/experiments/selection/P800-8/config/P800-8-cat4.yml +++ /dev/null @@ -1,344 +0,0 @@ ---- -################################################ -# General configuration -################################################ - -name: P800-8 -master_seed: 5 -prerun_seed: 2 - -input_path: "experiments/selection/P800-8/proc_input/cat4" -output_path: "experiments/selection/P800-8/proc_output/cat4" -use_windows_codec_binaries: true -condition_in_output_filename: true - -################################################ -### Input configuration -################################################ -input: - fmt: "FOA" - fs: 48000 - -################################################ -### Pre-processing on individual items -################################################ -preprocessing: - mask: "HP50" - loudness: -26 - window: 100 - -################################################ -### Pre-processing on whole signal(s) -################################################ -preprocessing_2: - concatenate_input: true - # concatenation_order: [] - preamble: 10000 - preamble_noise: true - repeat_signal: true - background_noise: - ### REQUIRED: SNR for background noise in dB - snr: 45 - ### REQUIRED: Path to background noise, must have same format and sampling rate as input signal(s) - background_noise_path: "experiments/selection/P800-8/background_noise/background_noise_cat4.wav" - -################################################# -### Bitstream processing -################################################# - -################################################ -### Configuration for conditions under test -################################################ -conditions_to_generate: - ### Reference and anchor conditions ########################## - c01: - type: ref - c02: - type: mnru - q: 32 - c03: - type: mnru - q: 28 - c04: - type: mnru - q: 24 - c05: - type: mnru - q: 20 - c06: - type: esdru - alpha: 0.8 - c07: - type: esdru - alpha: 0.6 - c08: - type: esdru - alpha: 0.4 - - # ### EVS condition ################################ - c09: - type: evs - bitrates: - - 7200 - cod: - fmt: "PLANARFOA" - opts: ["-max_band", "FB"] - dec: - c10: - type: evs - bitrates: - - 7200 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c11: - type: evs - bitrates: - - 8000 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c12: - type: evs - bitrates: - - 9600 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c13: - type: evs - bitrates: - - 16400 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c14: - type: evs - bitrates: - - 24400 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c15: - type: evs - bitrates: - - 7200 - cod: - fmt: "MASA2" - opts: ["-max_band", "FB"] - dec: - c16: - type: evs - bitrates: - - 8000 - cod: - fmt: "MASA2" - opts: ["-max_band", "FB"] - dec: - c17: - type: evs - bitrates: - - 9600 - cod: - fmt: "MASA2" - opts: ["-max_band", "FB"] - dec: - c18: - type: evs - bitrates: - - 16400 - cod: - fmt: "MASA2" - opts: ["-max_band", "FB"] - dec: - c19: - type: evs - bitrates: - - 24400 - cod: - fmt: "MASA2" - opts: ["-max_band", "FB"] - dec: - - c20: - type: evs - bitrates: - - 7200 - cod: - fmt: "PLANARFOA" - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c21: - type: evs - bitrates: - - 7200 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c22: - type: evs - bitrates: - - 8000 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c23: - type: evs - bitrates: - - 16400 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c24: - type: evs - bitrates: - - 24400 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - - ### IVAS condition ############################### - c25: - type: ivas - bitrates: - - 13200 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - c26: - type: ivas - bitrates: - - 16400 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - c27: - type: ivas - bitrates: - - 24400 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - c28: - type: ivas - bitrates: - - 32000 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - c29: - type: ivas - bitrates: - - 48000 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - c30: - type: ivas - bitrates: - - 64000 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - c31: - type: ivas - bitrates: - - 80000 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - - c32: - type: ivas - bitrates: - - 13200 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - tx: - type: "FER" - error_rate: 5 - c33: - type: ivas - bitrates: - - 16400 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - tx: - type: "FER" - error_rate: 5 - c34: - type: ivas - bitrates: - - 24400 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - tx: - type: "FER" - error_rate: 5 - c35: - type: ivas - bitrates: - - 48000 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - tx: - type: "FER" - error_rate: 5 - c36: - type: ivas - bitrates: - - 64000 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - tx: - type: "FER" - error_rate: 5 - -################################################ -### Post-processing -################################################ -postprocessing: - fmt: ["MASA2", "BINAURAL"] - fs: 48000 - loudness: -26 diff --git a/experiments/selection/P800-8/config/P800-8-cat5.yml b/experiments/selection/P800-8/config/P800-8-cat5.yml deleted file mode 100644 index 3ab95d39e5000f22d87f04b9eb9ac5ab6304005a..0000000000000000000000000000000000000000 --- a/experiments/selection/P800-8/config/P800-8-cat5.yml +++ /dev/null @@ -1,344 +0,0 @@ ---- -################################################ -# General configuration -################################################ - -name: P800-8 -master_seed: 5 -prerun_seed: 2 - -input_path: "experiments/selection/P800-8/proc_input/cat5" -output_path: "experiments/selection/P800-8/proc_output/cat5" -use_windows_codec_binaries: true -condition_in_output_filename: true - -################################################ -### Input configuration -################################################ -input: - fmt: "FOA" - fs: 48000 - -################################################ -### Pre-processing on individual items -################################################ -preprocessing: - mask: "HP50" - loudness: -26 - window: 100 - -################################################ -### Pre-processing on whole signal(s) -################################################ -preprocessing_2: - concatenate_input: true - # concatenation_order: [] - preamble: 10000 - preamble_noise: true - repeat_signal: true - background_noise: - ### REQUIRED: SNR for background noise in dB - snr: 45 - ### REQUIRED: Path to background noise, must have same format and sampling rate as input signal(s) - background_noise_path: "experiments/selection/P800-8/background_noise/background_noise_cat5.wav" - -################################################# -### Bitstream processing -################################################# - -################################################ -### Configuration for conditions under test -################################################ -conditions_to_generate: - ### Reference and anchor conditions ########################## - c01: - type: ref - c02: - type: mnru - q: 32 - c03: - type: mnru - q: 28 - c04: - type: mnru - q: 24 - c05: - type: mnru - q: 20 - c06: - type: esdru - alpha: 0.8 - c07: - type: esdru - alpha: 0.6 - c08: - type: esdru - alpha: 0.4 - - # ### EVS condition ################################ - c09: - type: evs - bitrates: - - 7200 - cod: - fmt: "PLANARFOA" - opts: ["-max_band", "FB"] - dec: - c10: - type: evs - bitrates: - - 7200 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c11: - type: evs - bitrates: - - 8000 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c12: - type: evs - bitrates: - - 9600 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c13: - type: evs - bitrates: - - 16400 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c14: - type: evs - bitrates: - - 24400 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c15: - type: evs - bitrates: - - 7200 - cod: - fmt: "MASA2" - opts: ["-max_band", "FB"] - dec: - c16: - type: evs - bitrates: - - 8000 - cod: - fmt: "MASA2" - opts: ["-max_band", "FB"] - dec: - c17: - type: evs - bitrates: - - 9600 - cod: - fmt: "MASA2" - opts: ["-max_band", "FB"] - dec: - c18: - type: evs - bitrates: - - 16400 - cod: - fmt: "MASA2" - opts: ["-max_band", "FB"] - dec: - c19: - type: evs - bitrates: - - 24400 - cod: - fmt: "MASA2" - opts: ["-max_band", "FB"] - dec: - - c20: - type: evs - bitrates: - - 7200 - cod: - fmt: "PLANARFOA" - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c21: - type: evs - bitrates: - - 7200 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c22: - type: evs - bitrates: - - 8000 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c23: - type: evs - bitrates: - - 16400 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c24: - type: evs - bitrates: - - 24400 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - - ### IVAS condition ############################### - c25: - type: ivas - bitrates: - - 13200 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - c26: - type: ivas - bitrates: - - 16400 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - c27: - type: ivas - bitrates: - - 24400 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - c28: - type: ivas - bitrates: - - 32000 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - c29: - type: ivas - bitrates: - - 48000 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - c30: - type: ivas - bitrates: - - 64000 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - c31: - type: ivas - bitrates: - - 80000 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - - c32: - type: ivas - bitrates: - - 13200 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - tx: - type: "FER" - error_rate: 5 - c33: - type: ivas - bitrates: - - 16400 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - tx: - type: "FER" - error_rate: 5 - c34: - type: ivas - bitrates: - - 24400 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - tx: - type: "FER" - error_rate: 5 - c35: - type: ivas - bitrates: - - 48000 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - tx: - type: "FER" - error_rate: 5 - c36: - type: ivas - bitrates: - - 64000 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - tx: - type: "FER" - error_rate: 5 - -################################################ -### Post-processing -################################################ -postprocessing: - fmt: ["MASA2", "BINAURAL"] - fs: 48000 - loudness: -26 diff --git a/experiments/selection/P800-8/config/P800-8-cat6.yml b/experiments/selection/P800-8/config/P800-8-cat6.yml deleted file mode 100644 index d903c7ed556607772b45823740afd51c454d78b0..0000000000000000000000000000000000000000 --- a/experiments/selection/P800-8/config/P800-8-cat6.yml +++ /dev/null @@ -1,344 +0,0 @@ ---- -################################################ -# General configuration -################################################ - -name: P800-8 -master_seed: 5 -prerun_seed: 2 - -input_path: "experiments/selection/P800-8/proc_input/cat6" -output_path: "experiments/selection/P800-8/proc_output/cat6" -use_windows_codec_binaries: true -condition_in_output_filename: true - -################################################ -### Input configuration -################################################ -input: - fmt: "FOA" - fs: 48000 - -################################################ -### Pre-processing on individual items -################################################ -preprocessing: - mask: "HP50" - loudness: -26 - window: 100 - -################################################ -### Pre-processing on whole signal(s) -################################################ -preprocessing_2: - concatenate_input: true - # concatenation_order: [] - preamble: 10000 - preamble_noise: true - repeat_signal: true - background_noise: - ### REQUIRED: SNR for background noise in dB - snr: 45 - ### REQUIRED: Path to background noise, must have same format and sampling rate as input signal(s) - background_noise_path: "experiments/selection/P800-8/background_noise/background_noise_cat6.wav" - -################################################# -### Bitstream processing -################################################# - -################################################ -### Configuration for conditions under test -################################################ -conditions_to_generate: - ### Reference and anchor conditions ########################## - c01: - type: ref - c02: - type: mnru - q: 32 - c03: - type: mnru - q: 28 - c04: - type: mnru - q: 24 - c05: - type: mnru - q: 20 - c06: - type: esdru - alpha: 0.8 - c07: - type: esdru - alpha: 0.6 - c08: - type: esdru - alpha: 0.4 - - # ### EVS condition ################################ - c09: - type: evs - bitrates: - - 7200 - cod: - fmt: "PLANARFOA" - opts: ["-max_band", "FB"] - dec: - c10: - type: evs - bitrates: - - 7200 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c11: - type: evs - bitrates: - - 8000 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c12: - type: evs - bitrates: - - 9600 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c13: - type: evs - bitrates: - - 16400 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c14: - type: evs - bitrates: - - 24400 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c15: - type: evs - bitrates: - - 7200 - cod: - fmt: "MASA2" - opts: ["-max_band", "FB"] - dec: - c16: - type: evs - bitrates: - - 8000 - cod: - fmt: "MASA2" - opts: ["-max_band", "FB"] - dec: - c17: - type: evs - bitrates: - - 9600 - cod: - fmt: "MASA2" - opts: ["-max_band", "FB"] - dec: - c18: - type: evs - bitrates: - - 16400 - cod: - fmt: "MASA2" - opts: ["-max_band", "FB"] - dec: - c19: - type: evs - bitrates: - - 24400 - cod: - fmt: "MASA2" - opts: ["-max_band", "FB"] - dec: - - c20: - type: evs - bitrates: - - 7200 - cod: - fmt: "PLANARFOA" - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c21: - type: evs - bitrates: - - 7200 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c22: - type: evs - bitrates: - - 8000 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c23: - type: evs - bitrates: - - 16400 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - c24: - type: evs - bitrates: - - 24400 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - tx: - type: "FER" - error_rate: 5 - - ### IVAS condition ############################### - c25: - type: ivas - bitrates: - - 13200 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - c26: - type: ivas - bitrates: - - 16400 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - c27: - type: ivas - bitrates: - - 24400 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - c28: - type: ivas - bitrates: - - 32000 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - c29: - type: ivas - bitrates: - - 48000 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - c30: - type: ivas - bitrates: - - 64000 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - c31: - type: ivas - bitrates: - - 80000 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - - c32: - type: ivas - bitrates: - - 13200 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - tx: - type: "FER" - error_rate: 5 - c33: - type: ivas - bitrates: - - 16400 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - tx: - type: "FER" - error_rate: 5 - c34: - type: ivas - bitrates: - - 24400 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - tx: - type: "FER" - error_rate: 5 - c35: - type: ivas - bitrates: - - 48000 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - tx: - type: "FER" - error_rate: 5 - c36: - type: ivas - bitrates: - - 64000 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - tx: - type: "FER" - error_rate: 5 - -################################################ -### Post-processing -################################################ -postprocessing: - fmt: ["MASA2", "BINAURAL"] - fs: 48000 - loudness: -26 diff --git a/experiments/selection/P800-8/config/P800-8-cat1.yml b/experiments/selection/P800-8/config/P800-8.yml similarity index 97% rename from experiments/selection/P800-8/config/P800-8-cat1.yml rename to experiments/selection/P800-8/config/P800-8.yml index 81a89b537e621b11f8133c1e99916df78e7229d3..2dbf23d240a2d3e91a15cb12156c936400e6fb17 100644 --- a/experiments/selection/P800-8/config/P800-8-cat1.yml +++ b/experiments/selection/P800-8/config/P800-8.yml @@ -7,8 +7,8 @@ name: P800-8 master_seed: 5 prerun_seed: 2 -input_path: "experiments/selection/P800-8/proc_input/cat1" -output_path: "experiments/selection/P800-8/proc_output/cat1" +input_path: "experiments/selection/P800-8/proc_input" +output_path: "experiments/selection/P800-8/proc_output" use_windows_codec_binaries: true condition_in_output_filename: true @@ -39,7 +39,7 @@ preprocessing_2: ### REQUIRED: SNR for background noise in dB snr: 45 ### REQUIRED: Path to background noise, must have same format and sampling rate as input signal(s) - background_noise_path: "experiments/selection/P800-8/background_noise/background_noise_cat1.wav" + background_noise_path: "experiments/selection/P800-8/background_noise/background_noise.wav" ################################################# ### Bitstream processing diff --git a/experiments/selection/P800-9/config/P800-9-cat2.yml b/experiments/selection/P800-9/config/P800-9-cat2.yml deleted file mode 100644 index 37fefcee37904bf3879e2701a26bb11346096da6..0000000000000000000000000000000000000000 --- a/experiments/selection/P800-9/config/P800-9-cat2.yml +++ /dev/null @@ -1,321 +0,0 @@ ---- -################################################ -# General configuration -################################################ - -name: P800-9 -master_seed: 5 -prerun_seed: 2 - -input_path: "experiments/selection/P800-9/proc_input/cat2" -output_path: "experiments/selection/P800-9/proc_output/cat2" -use_windows_codec_binaries: true -condition_in_output_filename: true - -################################################ -### Input configuration -################################################ -input: - fmt: "FOA" - fs: 48000 - -################################################ -### Pre-processing on individual items -################################################ -preprocessing: - mask: "HP50" - loudness: -26 - window: 100 - -################################################ -### Pre-processing on whole signal(s) -################################################ -preprocessing_2: - concatenate_input: true - # concatenation_order: [] - preamble: 10000 - preamble_noise: true - background_noise: - ### REQUIRED: SNR for background noise in dB - snr: 10 - ### REQUIRED: Path to background noise, must have same format and sampling rate as input signal(s) - background_noise_path: "experiments/selection/P800-9/background_noise/background_noise_cat2.wav" - repeat_signal: true - -################################################# -### Bitstream processing -################################################# - -################################################ -### Configuration for conditions under test -################################################ -conditions_to_generate: - ### Reference and anchor conditions ########################## - c01: - type: ref - c02: - type: mnru - q: 29 - c03: - type: mnru - q: 25 - c04: - type: mnru - q: 21 - c05: - type: mnru - q: 17 - c06: - type: esdru - alpha: 0.8 - c07: - type: esdru - alpha: 0.6 - c08: - type: esdru - alpha: 0.4 - - # ### EVS condition ################################ - c09: - type: evs - bitrates: - - 7200 - cod: - fmt: "PLANARFOA" - opts: ["-max_band", "FB"] - dec: - c10: - type: evs - bitrates: - - 7200 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c11: - type: evs - bitrates: - - 8000 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c12: - type: evs - bitrates: - - 9600 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c13: - type: evs - bitrates: - - 16400 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c14: - type: evs - bitrates: - - 24400 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - - c15: - type: evs - bitrates: - - 7200 - cod: - fmt: "MASA2" - opts: ["-dtx", "-max_band", "FB"] - dec: - c16: - type: evs - bitrates: - - 9600 - cod: - fmt: "MASA2" - opts: ["-dtx", "-max_band", "FB"] - dec: - c17: - type: evs - bitrates: - - 16400 - cod: - fmt: "MASA2" - opts: ["-dtx", "-max_band", "FB"] - dec: - - c18: - type: evs - bitrates: - - 7200 - cod: - fmt: "PLANARFOA" - opts: ["-dtx", "-max_band", "FB"] - dec: - c19: - type: evs - bitrates: - - 7200 - cod: - fmt: "FOA" - opts: ["-dtx", "-max_band", "FB"] - dec: - c20: - type: evs - bitrates: - - 8000 - cod: - fmt: "FOA" - opts: ["-dtx", "-max_band", "FB"] - dec: - c21: - type: evs - bitrates: - - 9600 - cod: - fmt: "FOA" - opts: ["-dtx", "-max_band", "FB"] - dec: - c22: - type: evs - bitrates: - - 16400 - cod: - fmt: "FOA" - opts: ["-dtx", "-max_band", "FB"] - dec: - c23: - type: evs - bitrates: - - 24400 - cod: - fmt: "FOA" - opts: ["-dtx", "-max_band", "FB"] - dec: - - ### IVAS condition ############################### - c24: - type: ivas - bitrates: - - 13200 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - c25: - type: ivas - bitrates: - - 16400 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - c26: - type: ivas - bitrates: - - 24400 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - c27: - type: ivas - bitrates: - - 32000 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - c28: - type: ivas - bitrates: - - 48000 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - c29: - type: ivas - bitrates: - - 64000 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - c30: - type: ivas - bitrates: - - 80000 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - - c31: - type: ivas - bitrates: - - 13200 - cod: - fmt: "MASA2" - opts: ["-dtx"] - dec: - fmt: "MASA2" - c32: - type: ivas - bitrates: - - 16400 - cod: - fmt: "MASA2" - opts: ["-dtx"] - dec: - fmt: "MASA2" - c33: - type: ivas - bitrates: - - 24400 - cod: - fmt: "MASA2" - opts: ["-dtx"] - dec: - fmt: "MASA2" - c34: - type: ivas - bitrates: - - 32000 - cod: - fmt: "MASA2" - opts: ["-dtx"] - dec: - fmt: "MASA2" - c35: - type: ivas - bitrates: - - 48000 - cod: - fmt: "MASA2" - opts: ["-dtx"] - dec: - fmt: "MASA2" - c36: - type: ivas - bitrates: - - 64000 - cod: - fmt: "MASA2" - opts: ["-dtx"] - dec: - fmt: "MASA2" - -################################################ -### Post-processing -################################################ -postprocessing: - fmt: ["MASA2", "BINAURAL"] - fs: 48000 - loudness: -26 diff --git a/experiments/selection/P800-9/config/P800-9-cat3.yml b/experiments/selection/P800-9/config/P800-9-cat3.yml deleted file mode 100644 index ebd7e193a3e4dabda2850fbd621905da449ee7b6..0000000000000000000000000000000000000000 --- a/experiments/selection/P800-9/config/P800-9-cat3.yml +++ /dev/null @@ -1,321 +0,0 @@ ---- -################################################ -# General configuration -################################################ - -name: P800-9 -master_seed: 5 -prerun_seed: 2 - -input_path: "experiments/selection/P800-9/proc_input/cat3" -output_path: "experiments/selection/P800-9/proc_output/cat3" -use_windows_codec_binaries: true -condition_in_output_filename: true - -################################################ -### Input configuration -################################################ -input: - fmt: "FOA" - fs: 48000 - -################################################ -### Pre-processing on individual items -################################################ -preprocessing: - mask: "HP50" - loudness: -26 - window: 100 - -################################################ -### Pre-processing on whole signal(s) -################################################ -preprocessing_2: - concatenate_input: true - # concatenation_order: [] - preamble: 10000 - preamble_noise: true - background_noise: - ### REQUIRED: SNR for background noise in dB - snr: 15 - ### REQUIRED: Path to background noise, must have same format and sampling rate as input signal(s) - background_noise_path: "experiments/selection/P800-9/background_noise/background_noise_cat3.wav" - repeat_signal: true - -################################################# -### Bitstream processing -################################################# - -################################################ -### Configuration for conditions under test -################################################ -conditions_to_generate: - ### Reference and anchor conditions ########################## - c01: - type: ref - c02: - type: mnru - q: 29 - c03: - type: mnru - q: 25 - c04: - type: mnru - q: 21 - c05: - type: mnru - q: 17 - c06: - type: esdru - alpha: 0.8 - c07: - type: esdru - alpha: 0.6 - c08: - type: esdru - alpha: 0.4 - - # ### EVS condition ################################ - c09: - type: evs - bitrates: - - 7200 - cod: - fmt: "PLANARFOA" - opts: ["-max_band", "FB"] - dec: - c10: - type: evs - bitrates: - - 7200 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c11: - type: evs - bitrates: - - 8000 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c12: - type: evs - bitrates: - - 9600 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c13: - type: evs - bitrates: - - 16400 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c14: - type: evs - bitrates: - - 24400 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - - c15: - type: evs - bitrates: - - 7200 - cod: - fmt: "MASA2" - opts: ["-dtx", "-max_band", "FB"] - dec: - c16: - type: evs - bitrates: - - 9600 - cod: - fmt: "MASA2" - opts: ["-dtx", "-max_band", "FB"] - dec: - c17: - type: evs - bitrates: - - 16400 - cod: - fmt: "MASA2" - opts: ["-dtx", "-max_band", "FB"] - dec: - - c18: - type: evs - bitrates: - - 7200 - cod: - fmt: "PLANARFOA" - opts: ["-dtx", "-max_band", "FB"] - dec: - c19: - type: evs - bitrates: - - 7200 - cod: - fmt: "FOA" - opts: ["-dtx", "-max_band", "FB"] - dec: - c20: - type: evs - bitrates: - - 8000 - cod: - fmt: "FOA" - opts: ["-dtx", "-max_band", "FB"] - dec: - c21: - type: evs - bitrates: - - 9600 - cod: - fmt: "FOA" - opts: ["-dtx", "-max_band", "FB"] - dec: - c22: - type: evs - bitrates: - - 16400 - cod: - fmt: "FOA" - opts: ["-dtx", "-max_band", "FB"] - dec: - c23: - type: evs - bitrates: - - 24400 - cod: - fmt: "FOA" - opts: ["-dtx", "-max_band", "FB"] - dec: - - ### IVAS condition ############################### - c24: - type: ivas - bitrates: - - 13200 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - c25: - type: ivas - bitrates: - - 16400 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - c26: - type: ivas - bitrates: - - 24400 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - c27: - type: ivas - bitrates: - - 32000 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - c28: - type: ivas - bitrates: - - 48000 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - c29: - type: ivas - bitrates: - - 64000 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - c30: - type: ivas - bitrates: - - 80000 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - - c31: - type: ivas - bitrates: - - 13200 - cod: - fmt: "MASA2" - opts: ["-dtx"] - dec: - fmt: "MASA2" - c32: - type: ivas - bitrates: - - 16400 - cod: - fmt: "MASA2" - opts: ["-dtx"] - dec: - fmt: "MASA2" - c33: - type: ivas - bitrates: - - 24400 - cod: - fmt: "MASA2" - opts: ["-dtx"] - dec: - fmt: "MASA2" - c34: - type: ivas - bitrates: - - 32000 - cod: - fmt: "MASA2" - opts: ["-dtx"] - dec: - fmt: "MASA2" - c35: - type: ivas - bitrates: - - 48000 - cod: - fmt: "MASA2" - opts: ["-dtx"] - dec: - fmt: "MASA2" - c36: - type: ivas - bitrates: - - 64000 - cod: - fmt: "MASA2" - opts: ["-dtx"] - dec: - fmt: "MASA2" - -################################################ -### Post-processing -################################################ -postprocessing: - fmt: ["MASA2", "BINAURAL"] - fs: 48000 - loudness: -26 diff --git a/experiments/selection/P800-9/config/P800-9-cat4.yml b/experiments/selection/P800-9/config/P800-9-cat4.yml deleted file mode 100644 index c7579d70cd4b06ea5fd80236eb8e94d95210d075..0000000000000000000000000000000000000000 --- a/experiments/selection/P800-9/config/P800-9-cat4.yml +++ /dev/null @@ -1,321 +0,0 @@ ---- -################################################ -# General configuration -################################################ - -name: P800-9 -master_seed: 5 -prerun_seed: 2 - -input_path: "experiments/selection/P800-9/proc_input/cat4" -output_path: "experiments/selection/P800-9/proc_output/cat4" -use_windows_codec_binaries: true -condition_in_output_filename: true - -################################################ -### Input configuration -################################################ -input: - fmt: "FOA" - fs: 48000 - -################################################ -### Pre-processing on individual items -################################################ -preprocessing: - mask: "HP50" - loudness: -26 - window: 100 - -################################################ -### Pre-processing on whole signal(s) -################################################ -preprocessing_2: - concatenate_input: true - # concatenation_order: [] - preamble: 10000 - preamble_noise: true - background_noise: - ### REQUIRED: SNR for background noise in dB - snr: 15 - ### REQUIRED: Path to background noise, must have same format and sampling rate as input signal(s) - background_noise_path: "experiments/selection/P800-9/background_noise/background_noise_cat4.wav" - repeat_signal: true - -################################################# -### Bitstream processing -################################################# - -################################################ -### Configuration for conditions under test -################################################ -conditions_to_generate: - ### Reference and anchor conditions ########################## - c01: - type: ref - c02: - type: mnru - q: 29 - c03: - type: mnru - q: 25 - c04: - type: mnru - q: 21 - c05: - type: mnru - q: 17 - c06: - type: esdru - alpha: 0.8 - c07: - type: esdru - alpha: 0.6 - c08: - type: esdru - alpha: 0.4 - - # ### EVS condition ################################ - c09: - type: evs - bitrates: - - 7200 - cod: - fmt: "PLANARFOA" - opts: ["-max_band", "FB"] - dec: - c10: - type: evs - bitrates: - - 7200 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c11: - type: evs - bitrates: - - 8000 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c12: - type: evs - bitrates: - - 9600 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c13: - type: evs - bitrates: - - 16400 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c14: - type: evs - bitrates: - - 24400 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - - c15: - type: evs - bitrates: - - 7200 - cod: - fmt: "MASA2" - opts: ["-dtx", "-max_band", "FB"] - dec: - c16: - type: evs - bitrates: - - 9600 - cod: - fmt: "MASA2" - opts: ["-dtx", "-max_band", "FB"] - dec: - c17: - type: evs - bitrates: - - 16400 - cod: - fmt: "MASA2" - opts: ["-dtx", "-max_band", "FB"] - dec: - - c18: - type: evs - bitrates: - - 7200 - cod: - fmt: "PLANARFOA" - opts: ["-dtx", "-max_band", "FB"] - dec: - c19: - type: evs - bitrates: - - 7200 - cod: - fmt: "FOA" - opts: ["-dtx", "-max_band", "FB"] - dec: - c20: - type: evs - bitrates: - - 8000 - cod: - fmt: "FOA" - opts: ["-dtx", "-max_band", "FB"] - dec: - c21: - type: evs - bitrates: - - 9600 - cod: - fmt: "FOA" - opts: ["-dtx", "-max_band", "FB"] - dec: - c22: - type: evs - bitrates: - - 16400 - cod: - fmt: "FOA" - opts: ["-dtx", "-max_band", "FB"] - dec: - c23: - type: evs - bitrates: - - 24400 - cod: - fmt: "FOA" - opts: ["-dtx", "-max_band", "FB"] - dec: - - ### IVAS condition ############################### - c24: - type: ivas - bitrates: - - 13200 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - c25: - type: ivas - bitrates: - - 16400 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - c26: - type: ivas - bitrates: - - 24400 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - c27: - type: ivas - bitrates: - - 32000 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - c28: - type: ivas - bitrates: - - 48000 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - c29: - type: ivas - bitrates: - - 64000 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - c30: - type: ivas - bitrates: - - 80000 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - - c31: - type: ivas - bitrates: - - 13200 - cod: - fmt: "MASA2" - opts: ["-dtx"] - dec: - fmt: "MASA2" - c32: - type: ivas - bitrates: - - 16400 - cod: - fmt: "MASA2" - opts: ["-dtx"] - dec: - fmt: "MASA2" - c33: - type: ivas - bitrates: - - 24400 - cod: - fmt: "MASA2" - opts: ["-dtx"] - dec: - fmt: "MASA2" - c34: - type: ivas - bitrates: - - 32000 - cod: - fmt: "MASA2" - opts: ["-dtx"] - dec: - fmt: "MASA2" - c35: - type: ivas - bitrates: - - 48000 - cod: - fmt: "MASA2" - opts: ["-dtx"] - dec: - fmt: "MASA2" - c36: - type: ivas - bitrates: - - 64000 - cod: - fmt: "MASA2" - opts: ["-dtx"] - dec: - fmt: "MASA2" - -################################################ -### Post-processing -################################################ -postprocessing: - fmt: ["MASA2", "BINAURAL"] - fs: 48000 - loudness: -26 diff --git a/experiments/selection/P800-9/config/P800-9-cat5.yml b/experiments/selection/P800-9/config/P800-9-cat5.yml deleted file mode 100644 index 77e54cab7172641098e5d530e58fea548a091a54..0000000000000000000000000000000000000000 --- a/experiments/selection/P800-9/config/P800-9-cat5.yml +++ /dev/null @@ -1,321 +0,0 @@ ---- -################################################ -# General configuration -################################################ - -name: P800-9 -master_seed: 5 -prerun_seed: 2 - -input_path: "experiments/selection/P800-9/proc_input/cat5" -output_path: "experiments/selection/P800-9/proc_output/cat5" -use_windows_codec_binaries: true -condition_in_output_filename: true - -################################################ -### Input configuration -################################################ -input: - fmt: "FOA" - fs: 48000 - -################################################ -### Pre-processing on individual items -################################################ -preprocessing: - mask: "HP50" - loudness: -26 - window: 100 - -################################################ -### Pre-processing on whole signal(s) -################################################ -preprocessing_2: - concatenate_input: true - # concatenation_order: [] - preamble: 10000 - preamble_noise: true - background_noise: - ### REQUIRED: SNR for background noise in dB - snr: 15 - ### REQUIRED: Path to background noise, must have same format and sampling rate as input signal(s) - background_noise_path: "experiments/selection/P800-9/background_noise/background_noise_cat5.wav" - repeat_signal: true - -################################################# -### Bitstream processing -################################################# - -################################################ -### Configuration for conditions under test -################################################ -conditions_to_generate: - ### Reference and anchor conditions ########################## - c01: - type: ref - c02: - type: mnru - q: 29 - c03: - type: mnru - q: 25 - c04: - type: mnru - q: 21 - c05: - type: mnru - q: 17 - c06: - type: esdru - alpha: 0.8 - c07: - type: esdru - alpha: 0.6 - c08: - type: esdru - alpha: 0.4 - - # ### EVS condition ################################ - c09: - type: evs - bitrates: - - 7200 - cod: - fmt: "PLANARFOA" - opts: ["-max_band", "FB"] - dec: - c10: - type: evs - bitrates: - - 7200 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c11: - type: evs - bitrates: - - 8000 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c12: - type: evs - bitrates: - - 9600 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c13: - type: evs - bitrates: - - 16400 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c14: - type: evs - bitrates: - - 24400 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - - c15: - type: evs - bitrates: - - 7200 - cod: - fmt: "MASA2" - opts: ["-dtx", "-max_band", "FB"] - dec: - c16: - type: evs - bitrates: - - 9600 - cod: - fmt: "MASA2" - opts: ["-dtx", "-max_band", "FB"] - dec: - c17: - type: evs - bitrates: - - 16400 - cod: - fmt: "MASA2" - opts: ["-dtx", "-max_band", "FB"] - dec: - - c18: - type: evs - bitrates: - - 7200 - cod: - fmt: "PLANARFOA" - opts: ["-dtx", "-max_band", "FB"] - dec: - c19: - type: evs - bitrates: - - 7200 - cod: - fmt: "FOA" - opts: ["-dtx", "-max_band", "FB"] - dec: - c20: - type: evs - bitrates: - - 8000 - cod: - fmt: "FOA" - opts: ["-dtx", "-max_band", "FB"] - dec: - c21: - type: evs - bitrates: - - 9600 - cod: - fmt: "FOA" - opts: ["-dtx", "-max_band", "FB"] - dec: - c22: - type: evs - bitrates: - - 16400 - cod: - fmt: "FOA" - opts: ["-dtx", "-max_band", "FB"] - dec: - c23: - type: evs - bitrates: - - 24400 - cod: - fmt: "FOA" - opts: ["-dtx", "-max_band", "FB"] - dec: - - ### IVAS condition ############################### - c24: - type: ivas - bitrates: - - 13200 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - c25: - type: ivas - bitrates: - - 16400 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - c26: - type: ivas - bitrates: - - 24400 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - c27: - type: ivas - bitrates: - - 32000 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - c28: - type: ivas - bitrates: - - 48000 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - c29: - type: ivas - bitrates: - - 64000 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - c30: - type: ivas - bitrates: - - 80000 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - - c31: - type: ivas - bitrates: - - 13200 - cod: - fmt: "MASA2" - opts: ["-dtx"] - dec: - fmt: "MASA2" - c32: - type: ivas - bitrates: - - 16400 - cod: - fmt: "MASA2" - opts: ["-dtx"] - dec: - fmt: "MASA2" - c33: - type: ivas - bitrates: - - 24400 - cod: - fmt: "MASA2" - opts: ["-dtx"] - dec: - fmt: "MASA2" - c34: - type: ivas - bitrates: - - 32000 - cod: - fmt: "MASA2" - opts: ["-dtx"] - dec: - fmt: "MASA2" - c35: - type: ivas - bitrates: - - 48000 - cod: - fmt: "MASA2" - opts: ["-dtx"] - dec: - fmt: "MASA2" - c36: - type: ivas - bitrates: - - 64000 - cod: - fmt: "MASA2" - opts: ["-dtx"] - dec: - fmt: "MASA2" - -################################################ -### Post-processing -################################################ -postprocessing: - fmt: ["MASA2", "BINAURAL"] - fs: 48000 - loudness: -26 diff --git a/experiments/selection/P800-9/config/P800-9-cat6.yml b/experiments/selection/P800-9/config/P800-9-cat6.yml deleted file mode 100644 index 11c317df1e3125266f17457a7549176b29e6adda..0000000000000000000000000000000000000000 --- a/experiments/selection/P800-9/config/P800-9-cat6.yml +++ /dev/null @@ -1,321 +0,0 @@ ---- -################################################ -# General configuration -################################################ - -name: P800-9 -master_seed: 5 -prerun_seed: 2 - -input_path: "experiments/selection/P800-9/proc_input/cat6" -output_path: "experiments/selection/P800-9/proc_output/cat6" -use_windows_codec_binaries: true -condition_in_output_filename: true - -################################################ -### Input configuration -################################################ -input: - fmt: "FOA" - fs: 48000 - -################################################ -### Pre-processing on individual items -################################################ -preprocessing: - mask: "HP50" - loudness: -26 - window: 100 - -################################################ -### Pre-processing on whole signal(s) -################################################ -preprocessing_2: - concatenate_input: true - # concatenation_order: [] - preamble: 10000 - preamble_noise: true - background_noise: - ### REQUIRED: SNR for background noise in dB - snr: 15 - ### REQUIRED: Path to background noise, must have same format and sampling rate as input signal(s) - background_noise_path: "experiments/selection/P800-9/background_noise/background_noise_cat6.wav" - repeat_signal: true - -################################################# -### Bitstream processing -################################################# - -################################################ -### Configuration for conditions under test -################################################ -conditions_to_generate: - ### Reference and anchor conditions ########################## - c01: - type: ref - c02: - type: mnru - q: 29 - c03: - type: mnru - q: 25 - c04: - type: mnru - q: 21 - c05: - type: mnru - q: 17 - c06: - type: esdru - alpha: 0.8 - c07: - type: esdru - alpha: 0.6 - c08: - type: esdru - alpha: 0.4 - - # ### EVS condition ################################ - c09: - type: evs - bitrates: - - 7200 - cod: - fmt: "PLANARFOA" - opts: ["-max_band", "FB"] - dec: - c10: - type: evs - bitrates: - - 7200 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c11: - type: evs - bitrates: - - 8000 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c12: - type: evs - bitrates: - - 9600 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c13: - type: evs - bitrates: - - 16400 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - c14: - type: evs - bitrates: - - 24400 - cod: - fmt: "FOA" - opts: ["-max_band", "FB"] - dec: - - c15: - type: evs - bitrates: - - 7200 - cod: - fmt: "MASA2" - opts: ["-dtx", "-max_band", "FB"] - dec: - c16: - type: evs - bitrates: - - 9600 - cod: - fmt: "MASA2" - opts: ["-dtx", "-max_band", "FB"] - dec: - c17: - type: evs - bitrates: - - 16400 - cod: - fmt: "MASA2" - opts: ["-dtx", "-max_band", "FB"] - dec: - - c18: - type: evs - bitrates: - - 7200 - cod: - fmt: "PLANARFOA" - opts: ["-dtx", "-max_band", "FB"] - dec: - c19: - type: evs - bitrates: - - 7200 - cod: - fmt: "FOA" - opts: ["-dtx", "-max_band", "FB"] - dec: - c20: - type: evs - bitrates: - - 8000 - cod: - fmt: "FOA" - opts: ["-dtx", "-max_band", "FB"] - dec: - c21: - type: evs - bitrates: - - 9600 - cod: - fmt: "FOA" - opts: ["-dtx", "-max_band", "FB"] - dec: - c22: - type: evs - bitrates: - - 16400 - cod: - fmt: "FOA" - opts: ["-dtx", "-max_band", "FB"] - dec: - c23: - type: evs - bitrates: - - 24400 - cod: - fmt: "FOA" - opts: ["-dtx", "-max_band", "FB"] - dec: - - ### IVAS condition ############################### - c24: - type: ivas - bitrates: - - 13200 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - c25: - type: ivas - bitrates: - - 16400 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - c26: - type: ivas - bitrates: - - 24400 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - c27: - type: ivas - bitrates: - - 32000 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - c28: - type: ivas - bitrates: - - 48000 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - c29: - type: ivas - bitrates: - - 64000 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - c30: - type: ivas - bitrates: - - 80000 - cod: - fmt: "MASA2" - dec: - fmt: "MASA2" - - c31: - type: ivas - bitrates: - - 13200 - cod: - fmt: "MASA2" - opts: ["-dtx"] - dec: - fmt: "MASA2" - c32: - type: ivas - bitrates: - - 16400 - cod: - fmt: "MASA2" - opts: ["-dtx"] - dec: - fmt: "MASA2" - c33: - type: ivas - bitrates: - - 24400 - cod: - fmt: "MASA2" - opts: ["-dtx"] - dec: - fmt: "MASA2" - c34: - type: ivas - bitrates: - - 32000 - cod: - fmt: "MASA2" - opts: ["-dtx"] - dec: - fmt: "MASA2" - c35: - type: ivas - bitrates: - - 48000 - cod: - fmt: "MASA2" - opts: ["-dtx"] - dec: - fmt: "MASA2" - c36: - type: ivas - bitrates: - - 64000 - cod: - fmt: "MASA2" - opts: ["-dtx"] - dec: - fmt: "MASA2" - -################################################ -### Post-processing -################################################ -postprocessing: - fmt: ["MASA2", "BINAURAL"] - fs: 48000 - loudness: -26 diff --git a/experiments/selection/P800-9/config/P800-9-cat1.yml b/experiments/selection/P800-9/config/P800-9.yml similarity index 97% rename from experiments/selection/P800-9/config/P800-9-cat1.yml rename to experiments/selection/P800-9/config/P800-9.yml index 14e85e8c4bdf2793b7817e3b3d66ff6a0882fce4..fe941a8a0ccc84bdc7452c26f99e96d1cc211346 100644 --- a/experiments/selection/P800-9/config/P800-9-cat1.yml +++ b/experiments/selection/P800-9/config/P800-9.yml @@ -7,8 +7,8 @@ name: P800-9 master_seed: 5 prerun_seed: 2 -input_path: "experiments/selection/P800-9/proc_input/cat1" -output_path: "experiments/selection/P800-9/proc_output/cat1" +input_path: "experiments/selection/P800-9/proc_input" +output_path: "experiments/selection/P800-9/proc_output" use_windows_codec_binaries: true condition_in_output_filename: true @@ -39,7 +39,7 @@ preprocessing_2: ### REQUIRED: SNR for background noise in dB snr: 10 ### REQUIRED: Path to background noise, must have same format and sampling rate as input signal(s) - background_noise_path: "experiments/selection/P800-9/background_noise/background_noise_cat1.wav" + background_noise_path: "experiments/selection/P800-9/background_noise/background_noise.wav" repeat_signal: true ################################################# diff --git a/generate_test.py b/generate_test.py new file mode 100644 index 0000000000000000000000000000000000000000..c393dd7380c274cc55c3b42b4e5c4b7a9dd1f906 --- /dev/null +++ b/generate_test.py @@ -0,0 +1,184 @@ +#! /usr/bin/env python3 + +# +# (C) 2022-2023 IVAS codec Public Collaboration with portions copyright Dolby International AB, Ericsson AB, +# Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., +# Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, +# Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other +# contributors to this repository. All Rights Reserved. +# +# This software is protected by copyright law and by international treaties. +# The IVAS codec Public Collaboration consisting of Dolby International AB, Ericsson AB, +# Fraunhofer-Gesellschaft zur Foerderung der angewandten Forschung e.V., Huawei Technologies Co. LTD., +# Koninklijke Philips N.V., Nippon Telegraph and Telephone Corporation, Nokia Technologies Oy, Orange, +# Panasonic Holdings Corporation, Qualcomm Technologies, Inc., VoiceAge Corporation, and other +# contributors to this repository retain full ownership rights in their respective contributions in +# the software. This notice grants no license of any kind, including but not limited to patent +# license, nor is any license granted by implication, estoppel or otherwise. +# +# Contributors are required to enter into the IVAS codec Public Collaboration agreement before making +# contributions. +# +# This software is provided "AS IS", without any express or implied warranties. The software is in the +# development stage. It is intended exclusively for experts who have experience with such software and +# solely for the purpose of inspection. All implied warranties of non-infringement, merchantability +# and fitness for a particular purpose are hereby disclaimed and excluded. +# +# Any dispute, controversy or claim arising under or in relation to providing this software shall be +# submitted to and settled by the final, binding jurisdiction of the courts of Munich, Germany in +# accordance with the laws of the Federal Republic of Germany excluding its conflict of law rules and +# the United Nations Convention on Contracts on the International Sales of Goods. +# + +import argparse +from pathlib import Path + +from ivas_processing_scripts import config +from ivas_processing_scripts import main as generate_test +from ivas_processing_scripts.utils import apply_func_parallel + +HERE = Path(__file__).parent.absolute() +EXPERIMENTS_P800 = [f"P800-{i}" for i in range(1, 10)] +EXPERIMENTS_BS1534 = [f"BS1534-{i}{x}" for i in range(1, 8) for x in ["a", "b"]] +LAB_IDS = ["a", "b", "c", "d"] +IN_FMT_FOR_MASA_EXPS = { + "P800-8": dict(zip([f"cat{i}" for i in range(1, 7)], ["FOA"] * 6)), + "P800-9": dict(zip([f"cat{i}" for i in range(1, 7)], ["FOA"] * 6)), + "BS1534-7a": {"cat1": "FOA", "cat2": "HOA2"}, + "BS1534-7b": {"cat1": "FOA", "cat2": "HOA2"}, +} + + +def generate_tests(exp_lab_pairs, run_parallel=True, create_cfg_only=False): + """ + Create configs and run them for all given experiment/lab pairs + """ + # get config paths for all given experiment/lab combis + cfgs = [create_experiment_setup(exp, lab) for exp, lab in exp_lab_pairs] + # flatten into single list + cfgs = [c for cl in cfgs for c in cl] + + if create_cfg_only: + print("Configs generated:") + print("\n".join(["- " + cfg.name for cfg in cfgs])) + return + + args = [Arguments(str(cfg)) for cfg in cfgs] + apply_func_parallel(generate_test, zip(args), type="mp" if run_parallel else None) + + +class Arguments: + def __init__(self, config): + self.config = config + self.debug = False + # used to overwrite the multiprocessing key in the configs to rather parallelize on category level + self.multiprocessing = False + + +def create_experiment_setup(experiment, lab) -> list[Path]: + """ + Create the config files for all categories for the given experiment and lab id. + """ + default_cfg_path = HERE.joinpath( + f"experiments/selection/{experiment}/config/{experiment}.yml" + ) + + num_categories = 1 + # for P800 we nee 6 categories (for each background/scene) + if experiment in EXPERIMENTS_P800: + num_categories = 6 + # for MUSHRA, we only need categories in the MASA tests, as there could be both FOA and HOA2 input + elif experiment in IN_FMT_FOR_MASA_EXPS: + num_categories = 2 + categories = [f"cat{i}" for i in range(1, num_categories + 1)] + + # calculate the seed value according to processing plan + experiments = EXPERIMENTS_P800 + EXPERIMENTS_BS1534 + seed = 101 + experiments.index(experiment) * 4 + LAB_IDS.index(lab) + + base_path = Path(HERE.name).joinpath(f"experiments/selection/{experiment}") + + cfgs = list() + for cat in categories: + suffix = cat + f"-lab_{lab}" + input_path = base_path.joinpath("proc_input").joinpath(cat) + output_path = base_path.joinpath("proc_output").joinpath(suffix) + bg_noise_path = base_path.joinpath("background_noise").joinpath( + f"background_noise_{suffix}.wav" + ) + cfg_path = default_cfg_path.parent.joinpath(f"{experiment}{cat}-lab_{lab}.yml") + cfgs.append(cfg_path) + + # set new lab- and category-dependent values + cfg = config.TestConfig(default_cfg_path) + cfg.name = f"{experiment}{suffix}" + cfg.prerun_seed = seed + cfg.input_path = str(input_path) + cfg.output_path = str(output_path) + if ( + bg_noise_pre_proc_2 := cfg.preprocessing_2.get("background_noise", None) + ) is not None: + bg_noise_pre_proc_2["background_noise_path"] = str(bg_noise_path) + + # bg noise SNR only differs from default config for some experiments + cat_num = int(cat[-1]) + if experiment in ["P800-5", "P800-9"] and cat_num >= 3: + bg_noise_pre_proc_2["snr"] = 15 + + # for MASA, the input format can differ between categories + if (fmt_for_category := IN_FMT_FOR_MASA_EXPS.get(experiment, None)) is not None: + cfg.input["fmt"] = fmt_for_category[cat] + + # ensure that necessary directories are there + input_path.mkdir(parents=True, exist_ok=True) + output_path.mkdir(parents=True, exist_ok=True) + bg_noise_path.parent.mkdir(parents=True, exist_ok=True) + + # write out config + cfg.to_file(cfg_path) + + # Return the list of configs that were generated. Not strictly necessary, but makes testing easier. + return cfgs + + +def exp_lab_pair(arg): + """ + Validation function for command line input + """ + exp, lab = arg.split(",") + + msg = "'{}' is not a valid {}. Possible values are: {}" + if exp not in EXPERIMENTS_BS1534 + EXPERIMENTS_P800: + experiments_msg = ",".join(EXPERIMENTS_BS1534 + EXPERIMENTS_P800) + err_msg = msg.format(exp, "experiment name", f"{{{experiments_msg}}}.") + raise ValueError(err_msg) + if lab not in LAB_IDS: + labs_msg = ",".join(LAB_IDS) + err_msg = msg.format(lab, "lab identifier", labs_msg) + raise ValueError(err_msg) + + return exp, lab + + +if __name__ == "__main__": + parser = argparse.ArgumentParser( + description="Generate config files and process files for selecton experiments. Experiment names and lab ids must be given as comma-separated pairs (e.g. 'P800-5,b BS1534-4a,d ...')" + ) + parser.add_argument( + "exp_lab_pairs", + type=exp_lab_pair, + nargs="+", + help="The combinations of experiment/lab-id that you want to generate, separated by whitespace. Experiment and lab id need to be separated by a comma.", + ) + parser.add_argument( + "--no_parallel", + action="store_true", + help="If given, configs will not be run in parallel", + ) + parser.add_argument( + "--create_cfg_only", + action="store_true", + help="If given, only create the configs and folder structure without processing items", + ) + args = parser.parse_args() + generate_tests(args.exp_lab_pairs, not args.no_parallel, args.create_cfg_only) diff --git a/ivas_processing_scripts/__init__.py b/ivas_processing_scripts/__init__.py index 29d47f82d64e5b6cddd3b45c16c44a85856e30a1..ce54f6d4f9a150b312eacc4693f271ecbd20e296 100755 --- a/ivas_processing_scripts/__init__.py +++ b/ivas_processing_scripts/__init__.py @@ -33,8 +33,6 @@ import logging from itertools import repeat -import yaml - from ivas_processing_scripts.audiotools.metadata import check_ISM_metadata from ivas_processing_scripts.constants import ( LOGGER_DATEFMT, @@ -191,5 +189,4 @@ def main(args): rename_generated_conditions(cfg.output_path) # copy configuration to output directory - with open(cfg.output_path.joinpath(f"{cfg.name}.yml"), "w") as f: - yaml.safe_dump(cfg._yaml_dump, f) + cfg.to_file(cfg.output_path.joinpath(f"{cfg.name}.yml")) diff --git a/ivas_processing_scripts/processing/config.py b/ivas_processing_scripts/processing/config.py index 09776a791b391b3d997bb2248257291636d99e23..d813f766d5ef411609717d18e93f403c5e1af6ff 100755 --- a/ivas_processing_scripts/processing/config.py +++ b/ivas_processing_scripts/processing/config.py @@ -33,6 +33,7 @@ import platform from copy import deepcopy from pathlib import Path +from typing import Union import yaml @@ -104,13 +105,11 @@ class TestConfig: # merge dictionaries, overriding from config file merge_dicts(cfg, file_cfg) self._validate_merged_config(cfg) + self._dump_keys = list(cfg.keys()) # set attributes from merged dictionary self.__dict__.update(cfg) - # store the merged config for writing to file later - self._yaml_dump = self._dump_yaml(cfg) - # convert to Path self.input_path = Path(self.input_path).resolve().absolute() self.output_path = Path(self.output_path).resolve().absolute() @@ -121,20 +120,27 @@ class TestConfig: return yaml.safe_load(fp) def _dump_yaml(self, cfg: dict): - """convert objects to to strings to avoid YAML dump as object""" + """convert Path objects to strings to avoid YAML dump as object""" cfg = deepcopy(cfg) def format(d: dict): for k, v in d.items(): if isinstance(v, dict): format(v) - else: + elif isinstance(v, Path): d[k] = str(v) format(cfg) return cfg + def to_file(self, outfile: Union[str, Path]): + to_dump = self._dump_yaml( + {k: v for k, v in self.__dict__.items() if k in self._dump_keys} + ) + with open(outfile, "w") as f: + yaml.dump(to_dump, f) + def _validate_file_cfg(self, cfg: dict, use_windows_codec_binaries: bool): """ensure configuration contains required keys""" MISSING_KEYS = [] diff --git a/tests/constants.py b/tests/constants.py index 971e38286f043bced9b34f2ac9a2b4718b9e6b36..28fe61b8a9b5b73f46c40af57fe9f3071a565d3d 100644 --- a/tests/constants.py +++ b/tests/constants.py @@ -30,6 +30,7 @@ # the United Nations Convention on Contracts on the International Sales of Goods. # +from itertools import cycle from pathlib import PurePath """ Set up paths """ @@ -218,7 +219,7 @@ INPUT_EXPERIMENT_NAMES = [ "BS1534-7a", "BS1534-7b", "P800-1", - # P800-2 is tested category-wise, see below + "P800-2", "P800-3", "P800-4", "P800-5", @@ -227,5 +228,5 @@ INPUT_EXPERIMENT_NAMES = [ "P800-8", "P800-9", ] - -CREATE_CATEGORIES_TESTS = ["P800-2"] +__LABS = cycle("abcd") +LAB_IDS_FOR_EXPERIMENTS = [next(__LABS) for e in INPUT_EXPERIMENT_NAMES] diff --git a/tests/test_experiments.py b/tests/test_experiments.py index a022e43d8f92ae2d2527d09888453ef21b22d1d3..a073b2e98a7a1ba0ef1b516bfc751c544cbec1bd 100644 --- a/tests/test_experiments.py +++ b/tests/test_experiments.py @@ -31,35 +31,29 @@ # import shutil +import sys from pathlib import Path import pytest from numpy.random import random, seed -from create_items_p800 import create_items from ivas_processing_scripts import main as generate_test from ivas_processing_scripts.audiotools import audio from ivas_processing_scripts.audiotools.audiofile import concat, write from ivas_processing_scripts.processing.config import TestConfig from tests.constants import ( - CREATE_CATEGORIES_TESTS, - EXPERIMENTS_DIR, FORMAT_TO_METADATA_FILES, INPUT_EXPERIMENT_NAMES, + LAB_IDS_FOR_EXPERIMENTS, NCHAN_TO_FILE, - TESTS_DIR, ) -BG_NOISE_NAME = "background_noise_cat.wav" +HERE = Path(__file__).parent.absolute() +sys.path.append(HERE.parent) +from generate_test import Arguments, create_experiment_setup # NOQA -class Arguments: - def __init__(self, config): - self.config = config - self.debug = True - - -def setup_input_files_for_config(config, category=1): +def setup_input_files_for_config(config): input_path = Path(config.input_path).resolve().absolute() input_fmt = config.input["fmt"] @@ -104,31 +98,15 @@ def setup_input_files_for_config(config, category=1): write(bg_noise_path, noise) -@pytest.mark.parametrize("exp_name", INPUT_EXPERIMENT_NAMES) -def test_generate_test_items(exp_name): - cfg_dir = Path(TESTS_DIR).joinpath(EXPERIMENTS_DIR) - exp_path = Path(cfg_dir).joinpath(Path(exp_name)).resolve().absolute() - if not (cfg := exp_path.joinpath(f"config/{exp_name}.yml")).exists(): - # for the P800 tests - they have different configs per category - cfg = exp_path.joinpath(f"config/{exp_name}-cat1.yml") - args = Arguments(cfg) +@pytest.mark.parametrize( + "exp_lab_pair", zip(INPUT_EXPERIMENT_NAMES, LAB_IDS_FOR_EXPERIMENTS) +) +def test_generate_test_items(exp_lab_pair): + exp_name, lab_id = exp_lab_pair + cfgs = create_experiment_setup(exp_name, lab_id) + cfg = cfgs[0] + args = Arguments(str(cfg)) config = TestConfig(cfg) - setup_input_files_for_config(config) - generate_test(args) - - -@pytest.mark.parametrize("exp_name", CREATE_CATEGORIES_TESTS) -def test_categories(exp_name): - for cat in range(1, 7): - cfg_dir = Path(TESTS_DIR).joinpath(EXPERIMENTS_DIR) - cfg = Path(cfg_dir).joinpath(Path(exp_name)).resolve().absolute() - cfg = cfg.joinpath(f"config/{exp_name}-cat{cat}.yml") - - config = TestConfig(cfg) - - setup_input_files_for_config(config, cat) - - create_items(exp_name)