update multi-scale training
This commit is contained in:
parent
77469a5268
commit
0096bb4dd5
2
train.py
2
train.py
|
@ -7,7 +7,7 @@ from utils.utils import *
|
||||||
|
|
||||||
parser = argparse.ArgumentParser()
|
parser = argparse.ArgumentParser()
|
||||||
parser.add_argument('-epochs', type=int, default=100, help='number of epochs')
|
parser.add_argument('-epochs', type=int, default=100, help='number of epochs')
|
||||||
parser.add_argument('-batch_size', type=int, default=2, 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('-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('-cfg', type=str, default='cfg/yolov3.cfg', help='cfg file path')
|
||||||
parser.add_argument('-img_size', type=int, default=32 * 19, help='size of each image dimension')
|
parser.add_argument('-img_size', type=int, default=32 * 19, help='size of each image dimension')
|
||||||
|
|
Loading…
Reference in New Issue