當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。