本文整理汇总了Python中neon.util.argparser.NeonArgparser.print_usage方法的典型用法代码示例。如果您正苦于以下问题:Python NeonArgparser.print_usage方法的具体用法?Python NeonArgparser.print_usage怎么用?Python NeonArgparser.print_usage使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类neon.util.argparser.NeonArgparser
的用法示例。
在下文中一共展示了NeonArgparser.print_usage方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: NeonArgparser
# 需要导入模块: from neon.util.argparser import NeonArgparser [as 别名]
# 或者: from neon.util.argparser.NeonArgparser import print_usage [as 别名]
Simple example of using the dataloader with pre-generated augmentation data
"""
arg_defaults = {'batch_size': 0}
parser = NeonArgparser(__doc__, default_overrides=arg_defaults)
parser.add_argument('--ssd_config', action='append', required=True, help='ssd json file path')
parser.add_argument('--height', type=int, help='image height')
parser.add_argument('--width', type=int, help='image width')
parser.add_argument('--num_images', type=int, default=0, help='number of images to plot')
parser.add_argument('--image_dir', type=str, help='folder to save sampled images')
parser.add_argument('--score_threshold', type=float, help='threshold for predicted scores.')
parser.add_argument('--output', type=str, help='file to save detected boxes.')
args = parser.parse_args(gen_be=False)
if args.model_file is None:
parser.print_usage()
exit('You need to specify model file to evaluate.')
if args.ssd_config:
args.ssd_config = {k: v for k, v in [ss.split(':') for ss in args.ssd_config]}
config = json.load(open(args.ssd_config['val']), object_pairs_hook=OrderedDict)
if args.batch_size == 0:
args.batch_size = config["batch_size"]
# setup backend
be = gen_backend(backend=args.backend, batch_size=args.batch_size,
device_id=args.device_id, compat_mode='caffe', rng_seed=1,
deterministic_update=True, deterministic=True)
be.enable_winograd = 0