From 7c62d8ab0c5861233405f80b1ef5bf0b9580ff20 Mon Sep 17 00:00:00 2001 From: sampath1117 Date: Tue, 27 Aug 2024 02:05:09 +0000 Subject: [PATCH] updated audio augmentation map in common.py --- utilities/test_suite/common.py | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/utilities/test_suite/common.py b/utilities/test_suite/common.py index f895446fd..4929be442 100644 --- a/utilities/test_suite/common.py +++ b/utilities/test_suite/common.py @@ -81,13 +81,13 @@ } audioAugmentationMap = { - 0: ["non_silent_region_detection", "HOST"], - 1: ["to_decibels", "HOST"], - 2: ["pre_emphasis_filter", "HOST"], - 3: ["down_mixing", "HOST"], - 4: ["spectrogram", "HOST"], - 5: ["slice", "HOST"], - 6: ["resample", "HOST"], + 0: ["non_silent_region_detection", "HOST", "HIP"], + 1: ["to_decibels", "HOST", "HIP"], + 2: ["pre_emphasis_filter", "HOST", "HIP"], + 3: ["down_mixing", "HOST", "HIP"], + 4: ["spectrogram", "HOST", "HIP"], + 5: ["slice", "HOST", "HIP"], + 6: ["resample", "HOST", "HIP"], 7: ["mel_filter_bank", "HOST"] }