From 4c35836fa5aa70ab86b43fb9f9b60f9b30c423bf Mon Sep 17 00:00:00 2001 From: Shivam Mehta Date: Sat, 2 Mar 2024 12:48:54 +0000 Subject: [PATCH] minor fix --- matcha/utils/get_durations_from_trained_model.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/matcha/utils/get_durations_from_trained_model.py b/matcha/utils/get_durations_from_trained_model.py index d339699..5dc4bc0 100644 --- a/matcha/utils/get_durations_from_trained_model.py +++ b/matcha/utils/get_durations_from_trained_model.py @@ -144,7 +144,7 @@ def main(): if args.output_folder is not None: output_folder = Path(args.output_folder) else: - output_folder = Path("data") / "temp" / cfg["name"] / "durations" + output_folder = Path("data") / "processed_data" / cfg["name"] / "durations" if os.path.exists(output_folder) and not args.force: print("Folder already exists. Use -f to force overwrite")