From 00ab4dd09aea666a1a556047d85489d1c3b98d47 Mon Sep 17 00:00:00 2001 From: Jim Martens Date: Wed, 1 May 2019 13:01:55 +0200 Subject: [PATCH] Store list outputs in sub directory Signed-off-by: Jim Martens --- src/twomartens/masterthesis/ssd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/twomartens/masterthesis/ssd.py b/src/twomartens/masterthesis/ssd.py index 8454eb2..a8c6f01 100644 --- a/src/twomartens/masterthesis/ssd.py +++ b/src/twomartens/masterthesis/ssd.py @@ -222,7 +222,7 @@ def _predict_one_epoch(dataset: tf.data.Dataset, list_nr = 0 for l in all_lists: if id(l) not in lists: - with open(f"list-{counter}-{list_nr}.txt", "w") as file: + with open(f"lists/list-{counter}-{list_nr}.txt", "w") as file: file.write(l) list_nr += 1