Changed batch size to 16
Signed-off-by: Jim Martens <github@2martens.de>
This commit is contained in:
@ -102,7 +102,7 @@ def _auto_encoder_train(args: argparse.Namespace) -> None:
|
|||||||
tf.enable_eager_execution()
|
tf.enable_eager_execution()
|
||||||
coco_path = args.coco_path
|
coco_path = args.coco_path
|
||||||
category = args.category
|
category = args.category
|
||||||
batch_size = 32
|
batch_size = 16
|
||||||
coco_data = data.load_coco(coco_path, category, num_epochs=args.num_epochs, batch_size=batch_size,
|
coco_data = data.load_coco(coco_path, category, num_epochs=args.num_epochs, batch_size=batch_size,
|
||||||
resized_shape=(64, 64))
|
resized_shape=(64, 64))
|
||||||
train_summary_writer = summary_ops_v2.create_file_writer(
|
train_summary_writer = summary_ops_v2.create_file_writer(
|
||||||
|
|||||||
Reference in New Issue
Block a user