From e07b2b5318c65a551d3c980cf799e8d38a587868 Mon Sep 17 00:00:00 2001
From: Charly Lamothe <charly.lamothe@univ-amu.fr>
Date: Thu, 19 Dec 2019 12:56:38 +0100
Subject: [PATCH] Fix path issue in second plot of stage1

---
 code/compute_results.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/code/compute_results.py b/code/compute_results.py
index 45b5ca7..e9c93e1 100644
--- a/code/compute_results.py
+++ b/code/compute_results.py
@@ -188,7 +188,7 @@ if __name__ == "__main__":
             title='Loss values of {} using the best hyperparams'.format(args.dataset_name)
         )
         Plotter.plot_losses(
-            file_path=output_path + 'stage1' + os.sep + 'losses_wo_params.png',
+            file_path=output_path + os.sep + 'losses_wo_params.png',
             all_experiment_scores=[base_wo_params_train_scores, base_wo_params_dev_scores, base_wo_params_test_scores,
                 random_wo_params_train_scores, random_wo_params_dev_scores, random_wo_params_test_scores,
                 omp_wo_params_train_scores, omp_wo_params_dev_scores, omp_wo_params_test_scores],
-- 
GitLab