Skip to content

Commit

Permalink
Fix absolute path in path join call (#7099)
Browse files Browse the repository at this point in the history
Signed-off-by: Jan Beckmann <[email protected]>
  • Loading branch information
kingjan1999 committed Jul 24, 2023
1 parent 00eeb29 commit 5a5c77a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nemo/collections/asr/parts/utils/vad_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 5a5c77a

Please sign in to comment.