fixed retest output paths

This commit is contained in:
Jan Kowalczyk
2025-07-02 17:11:41 +02:00
parent 6b3a41448c
commit 0bb53b99d8

View File

@@ -926,12 +926,12 @@ def main(
) )
if retest_ocsvm: if retest_ocsvm:
ocsvm.save_results( 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: if retest_isoforest:
Isoforest.save_results( Isoforest.save_results(
export_pkl=retest_output_path export_pkl=retest_output_path
/ f"/results_isoforest_{fold_idx}.pkl" / f"results_isoforest_{fold_idx}.pkl"
) )