From 7a79b496113035a859679946739bd7becc6b5e59 Mon Sep 17 00:00:00 2001 From: Sooyoung Cheong <64125280+c-sooyoung@users.noreply.github.com> Date: Sun, 9 Aug 2026 22:55:03 +0900 Subject: [PATCH] Removed saving .mat files; takes up too much space --- ptycho/fold_slice.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ptycho/fold_slice.py b/ptycho/fold_slice.py index 828bd59..5c78807 100644 --- a/ptycho/fold_slice.py +++ b/ptycho/fold_slice.py @@ -81,9 +81,9 @@ class FoldSlicePtychoEngine(PtychoEngine): self._output = loadmat(mat_path) log_fourier_error = self._log_fourier_metric() - os.makedirs(os.path.join(self.config['io']['result_dir'], "mat"), exist_ok=True) + # os.makedirs(os.path.join(self.config['io']['result_dir'], "mat"), exist_ok=True) os.makedirs(os.path.join(self.config['io']['result_dir'], "tiff"), exist_ok=True) - shutil.copy(mat_path, os.path.join(self.config['io']['result_dir'], "mat", f"{log_fourier_error:.4f}_{run_id}.mat")) + # shutil.copy(mat_path, os.path.join(self.config['io']['result_dir'], "mat", f"{log_fourier_error:.4f}_{run_id}.mat")) # saving .mat files takes a lot of space (expect 20+ GB for 64*64 scan size, 300 iterations) shutil.copy(image_path, os.path.join(self.config['io']['result_dir'], "tiff", f"{log_fourier_error:.4f}_{run_id}.tiff"))