Commit 62802347 authored by Jan Kiene's avatar Jan Kiene
Browse files

Merge branch 'main' into 28-masa-selection-test-experiments

parents 8dddd91f 1cc3047e
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -11,9 +11,9 @@ venv/
*.bs
*.192
mc.double
proc_input/*.wav
proc_input/*.pcm
proc_output/
experiments/selection/*/proc_input/*.wav
experiments/selection/*/proc_input/*.pcm
experiments/selection/*/proc_output/
*~
tests/tmp_output_*
tests/cut
+2 −1
Original line number Diff line number Diff line
@@ -12,7 +12,8 @@ workflow:
    - if: $CI_COMMIT_BRANCH && $CI_OPEN_MERGE_REQUESTS && $CI_PIPELINE_SOURCE == "push"
      when: never
    - if: $CI_PIPELINE_SOURCE == 'merge_request_event'
    - if: $CI_PIPELINE_SOURCE == 'push'
    - if: $CI_PIPELINE_SOURCE == 'push' && $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH # Pushes to main
      when: never
    - if: $CI_PIPELINE_SOURCE == 'web' # for testing


+9 −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>
@@ -253,6 +260,8 @@ input:
        # background_noise_path: ".../noise.wav"
        ### Flag for using low level [-4,+4] background noise; default = false
        # low_level_noise: true
	### Flag for repeating the whole signal once and discarding the first half after processing
    # repeat_signal: true
```

</details>
+5 −0
Original line number Diff line number Diff line
@@ -18,6 +18,9 @@
# 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.
@@ -117,6 +120,8 @@ input:
        # background_noise_path: ".../noise.wav"
        ### Flag for using low level [-4,+4] background noise; default = false
        # low_level_noise: true
    ### Flag for repeating the whole signal once and discarding the first half after processing
    # repeat_signal: true

#################################################
### Bitstream processing
+3 −1
Original line number Diff line number Diff line
@@ -9,6 +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
condition_in_output_filename: true

################################################
### Input configuration
@@ -79,7 +81,7 @@ conditions_to_generate:
        cod:
        dec:
            fmt: "STEREO"
    c7:
    c07:
        type: ivas
        bitrates:
            - 64000
Loading