Removed writing lists

Signed-off-by: Jim Martens <github@2martens.de>
This commit is contained in:
2019-05-01 13:25:25 +02:00
parent 75bc7367a8
commit 70df855304

View File

@ -182,7 +182,6 @@ def _predict_one_epoch(dataset: tf.data.Dataset,
counter = 0 counter = 0
import gc import gc
from tensorflow.python.eager import context from tensorflow.python.eager import context
lists = None
for inputs in dataset: for inputs in dataset:
decoded_predictions_batch = [] decoded_predictions_batch = []
@ -218,14 +217,6 @@ def _predict_one_epoch(dataset: tf.data.Dataset,
all_objects = muppy.get_objects() all_objects = muppy.get_objects()
all_lists = muppy.filter(all_objects, Type=list) all_lists = muppy.filter(all_objects, Type=list)
summary.print_(summary.summarize(all_lists)) summary.print_(summary.summarize(all_lists))
if lists is None:
lists = map(id, all_lists)
list_nr = 0
for l in all_lists:
if id(l) not in lists:
with open(f"lists/list-{counter}-{list_nr}.txt", "w") as file:
file.write(str(l))
list_nr += 1
epoch_end_time = time.time() epoch_end_time = time.time()
per_epoch_time = epoch_end_time - epoch_start_time per_epoch_time = epoch_end_time - epoch_start_time