From 78ab277ce749f05c3012c9fdccebdb1b38e555e0 Mon Sep 17 00:00:00 2001 From: Jim Martens Date: Thu, 20 Jun 2019 14:00:32 +0200 Subject: [PATCH] Attempt batch size of 32 Signed-off-by: Jim Martens --- src/twomartens/masterthesis/cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/twomartens/masterthesis/cli.py b/src/twomartens/masterthesis/cli.py index 578fe14..db84fc3 100644 --- a/src/twomartens/masterthesis/cli.py +++ b/src/twomartens/masterthesis/cli.py @@ -118,7 +118,7 @@ def _auto_encoder_train(args: argparse.Namespace) -> None: tf.enable_eager_execution() coco_path = args.coco_path category = args.category - batch_size = 16 + batch_size = 32 image_size = 256 coco_data = data.load_coco_train(coco_path, category, num_epochs=args.num_epochs, batch_size=batch_size, resized_shape=(image_size, image_size))