Commit 76f53376 authored by multrus's avatar multrus
Browse files

add condition_in_output_filename, convert True to true in order to align to yml-syntax

parent ecbb6d81
Loading
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -142,6 +142,9 @@ postprocessing:
# master_seed: 5
### Additional seed to specify number of preruns (used for background noise delay and FER bitstream processing); default = 0
# prerun_seed: 2
### flag for linux to use windows-built binaries with wine: default = false
### this requires the wine binary to be available and will be ignored on windows
# use_windows_codec_binaries: true

### Any relative paths will be interpreted relative to the working directory the script is called from!
### Usage of absolute paths is recommended.
@@ -172,6 +175,10 @@ output_path: "./tmp_output"
### searches for the specified substring in found filenames; default = null
# input_select:
#  - "48kHz"

### Include the condition number in the item name; default = false
### for e.g. abcxyz.wav --> abcxyz.cXX.wav
# condition_in_output_filename: true
```

</details>
+1 −1
Original line number Diff line number Diff line
@@ -20,7 +20,7 @@
# prerun_seed: 2
### flag for linux to use windows-built binaries with wine: default = false
### this requires the wine binary to be available and will be ignored on windows
# use_windows_codec_binaries: True,
# use_windows_codec_binaries: true

### Any relative paths will be interpreted relative to the working directory the script is called from!
### Usage of absolute paths is recommended.
+2 −1
Original line number Diff line number Diff line
@@ -9,7 +9,8 @@ prerun_seed: 2

input_path: "experiments/selection/BS1534-1a/proc_input"
output_path: "experiments/selection/BS1534-1a/proc_output"
use_windows_codec_binaries: True
use_windows_codec_binaries: true
condition_in_output_filename: true

################################################
### Input configuration
+2 −1
Original line number Diff line number Diff line
@@ -9,7 +9,8 @@ prerun_seed: 2

input_path: "experiments/selection/BS1534-1b/proc_input"
output_path: "experiments/selection/BS1534-1b/proc_output"
use_windows_codec_binaries: True
use_windows_codec_binaries: true
condition_in_output_filename: true

################################################
### Input configuration
+2 −1
Original line number Diff line number Diff line
@@ -9,7 +9,8 @@ prerun_seed: 2

input_path: "experiments/selection/BS1534-2a/proc_input"
output_path: "experiments/selection/BS1534-2a/proc_output"
use_windows_codec_binaries: True
use_windows_codec_binaries: true
condition_in_output_filename: true

################################################
### Input configuration
Loading