-batch_size from 12 to 16

This commit is contained in:
Glenn Jocher 2018-10-15 21:05:24 +02:00
parent 24a41972cb
commit 05f28ab02b
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ from utils.utils import *
parser = argparse.ArgumentParser()
parser.add_argument('-epochs', type=int, default=68, help='number of epochs')
parser.add_argument('-batch_size', type=int, default=12, help='size of each image batch')
parser.add_argument('-batch_size', type=int, default=16, help='size of each image batch')
parser.add_argument('-data_config_path', type=str, default='cfg/coco.data', help='data config file path')
parser.add_argument('-cfg', type=str, default='cfg/yolov3.cfg', help='cfg file path')
parser.add_argument('-img_size', type=int, default=32 * 13, help='size of each image dimension')