From 0bb53b99d8458bd223a6a954c213de94a1f863af Mon Sep 17 00:00:00 2001 From: Jan Kowalczyk Date: Wed, 2 Jul 2025 17:11:41 +0200 Subject: [PATCH] fixed retest output paths --- Deep-SAD-PyTorch/src/main.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Deep-SAD-PyTorch/src/main.py b/Deep-SAD-PyTorch/src/main.py index 4d09886..7e64784 100644 --- a/Deep-SAD-PyTorch/src/main.py +++ b/Deep-SAD-PyTorch/src/main.py @@ -926,12 +926,12 @@ def main( ) if retest_ocsvm: ocsvm.save_results( - export_pkl=retest_output_path / f"/results_ocsvm_{fold_idx}.pkl" + export_pkl=retest_output_path / f"results_ocsvm_{fold_idx}.pkl" ) if retest_isoforest: Isoforest.save_results( export_pkl=retest_output_path - / f"/results_isoforest_{fold_idx}.pkl" + / f"results_isoforest_{fold_idx}.pkl" )