当前位置: 首页>>代码示例>>Python>>正文


Python datasets.mnist方法代码示例

本文整理汇总了Python中datasets.mnist方法的典型用法代码示例。如果您正苦于以下问题:Python datasets.mnist方法的具体用法?Python datasets.mnist怎么用?Python datasets.mnist使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在datasets的用法示例。


在下文中一共展示了datasets.mnist方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: parse_args

# 需要导入模块: import datasets [as 别名]
# 或者: from datasets import mnist [as 别名]
def parse_args():
	"""
	Parse command line arguments.

	Parameters:
		None
	Returns:
		parser arguments
	"""
	parser = argparse.ArgumentParser(description='LeNet model')
	optional = parser._action_groups.pop()
	required = parser.add_argument_group('required arguments')
	required.add_argument('--net',
		dest='net',
		help='Choice of network architecture',
		choices=['vgg16', 'vgg19'])
	optional.add_argument('--dataset',
		dest='dataset',
		help='Choice of dataset to train model',
		choices=[None, 'mnist', 'cifar10'],
		default=None)
	optional.add_argument('--print_model',
		dest='print_model',
		help='Print LeNet model',
		action='store_true')
	optional.add_argument('--train_model',
		dest='train_model',
		help='Train LeNet on MNIST',
		action='store_true')
	optional.add_argument('-s', '--save_weights',
		dest='save_weights',
		help='Save the trained weights',
		default=None)
	optional.add_argument('-w', '--weights',
		dest='weights',
		help='Path to weights (hdf5) file',
		default=None)
	optional.add_argument('-e', '--epochs',
		dest='epochs',
		help='Number of epochs for training',
		type=int,
		default=20)
	optional.add_argument('--data_augmentation',
		dest='data_augmentation',
		help='Use data augmentations for input',
		action='store_true')
	optional.add_argument('--viz_training',
		dest='viz_training',
		help='Visualize the training curve',
		action='store_true')
	parser._action_groups.append(optional)
	return parser.parse_args() 
开发者ID:eweill,项目名称:keras-deepcv,代码行数:54,代码来源:vgg_train.py


注:本文中的datasets.mnist方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。