From abc48d65898d875215f795dc725f7464b1cbfb93 Mon Sep 17 00:00:00 2001 From: Jan Beckmann Date: Mon, 24 Jul 2023 20:27:49 +0200 Subject: [PATCH] Fix absolute path in path join call (#7099) Signed-off-by: Jan Beckmann Signed-off-by: dorotat --- nemo/collections/asr/parts/utils/vad_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nemo/collections/asr/parts/utils/vad_utils.py b/nemo/collections/asr/parts/utils/vad_utils.py index d8860a0c7cff..44f2abec584f 100644 --- a/nemo/collections/asr/parts/utils/vad_utils.py +++ b/nemo/collections/asr/parts/utils/vad_utils.py @@ -276,7 +276,7 @@ def generate_overlap_vad_seq( overlap_out_dir = out_dir else: overlap_out_dir = os.path.join( - frame_pred_dir, "/overlap_smoothing_output" + "_" + smoothing_method + "_" + str(overlap) + frame_pred_dir, "overlap_smoothing_output" + "_" + smoothing_method + "_" + str(overlap) ) if not os.path.exists(overlap_out_dir):