TensorFlow中关于tf.app.flags命令行参数解析模块
作者:打工人小飞 时间:2021-10-17 03:40:40
tf.app.flags命令行参数解析模块
说道命令行参数解析,就不得不提到 python 的 argparse 模块,详情可参考我之前的一篇文章:python argparse 模块命令行参数用法及说明。
在阅读相关工程的源码时,很容易发现 tf.app.flags 模块的身影。其作用与 python 的 argparse 类似。
直接上代码实例,新建一个名为 test_flags.py 的文件,内容如下:
#coding:utf-8
import tensorflow as tf
FLAGS = tf.app.flags.FLAGS
# tf.app.flags.DEFINE_string("param_name", "default_val", "description")
tf.app.flags.DEFINE_string("train_data_path", "/home/feige", "training data dir")
tf.app.flags.DEFINE_string("log_dir", "./logs", " the log dir")
tf.app.flags.DEFINE_integer("train_batch_size", 128, "batch size of train data")
tf.app.flags.DEFINE_integer("test_batch_size", 64, "batch size of test data")
tf.app.flags.DEFINE_float("learning_rate", 0.001, "learning rate")
def main(unused_argv):
train_data_path = FLAGS.train_data_path
print("train_data_path", train_data_path)
train_batch_size = FLAGS.train_batch_size
print("train_batch_size", train_batch_size)
test_batch_size = FLAGS.test_batch_size
print("test_batch_size", test_batch_size)
size_sum = tf.add(train_batch_size, test_batch_size)
with tf.Session() as sess:
sum_result = sess.run(size_sum)
print("sum_result", sum_result)
# 使用这种方式保证了,如果此文件被其他文件 import的时候,不会执行main 函数
if __name__ == '__main__':
tf.app.run() # 解析命令行参数,调用main 函数 main(sys.argv)
上述代码已给出较为详细的注释,在此不再赘述。
该文件的调用示例以及运行结果如下所示
如果需要修改默认参数的值,则在命令行传入自定义参数值即可,若全部使用默认参数值,则可直接在命令行运行该 python 文件。
读者可能会对 tf.app.run() 有些疑问,在上述注释中也有所解释,但要真正弄清楚其运行原理
还需查阅其源代码
def run(main=None, argv=None):
"""Runs the program with an optional 'main' function and 'argv' list."""
f = flags.FLAGS
# Extract the args from the optional `argv` list.
args = argv[1:] if argv else None
# Parse the known flags from that list, or from the command
# line otherwise.
# pylint: disable=protected-access
flags_passthrough = f._parse_flags(args=args)
# pylint: enable=protected-access
main = main or sys.modules['__main__'].main
# Call the main function, passing through any arguments
# to the final program.
sys.exit(main(sys.argv[:1] + flags_passthrough))
flags_passthrough=f._parse_flags(args=args)
这里的_parse_flags
就是我们tf.app.flags
源码中用来解析命令行参数的函数。
所以这一行就是解析参数的功能;
下面两行代码也就是 tf.app.run 的核心意思:执行程序中 main 函数,并解析命令行参数!
来源:https://huangfei.blog.csdn.net/article/details/81090227
标签:TensorFlow,tf.app.flags,命令行,参数
0
投稿
猜你喜欢
php控制文件下载速度的方法
2023-07-19 00:21:30
Python爬虫之Spider类用法简单介绍
2023-04-23 15:03:27
Python3.8安装tensorflow的简单方法步骤
2021-03-11 23:31:42
python判断一个变量是否已经设置的方法
2022-06-09 19:33:15
Python在不同场景合并多个Excel的方法
2021-11-03 02:52:00
SQL Server 2008数据库分布式查询知识
2024-01-25 10:13:08
python用opencv将标注提取画框到对应的图像中
2023-01-18 21:10:16
Python pyinotify模块实现对文档的实时监控功能方法
2023-04-15 08:13:52
oracle数据排序后获取前几行数据的写法(rownum、fetch方式)
2023-07-02 01:15:09
ASP幻灯片
2009-09-04 18:05:00
深入理解JS中的substr和substring
2024-04-16 10:29:24
python-itchat 获取微信群用户信息的实例
2022-11-09 18:15:41
MySQL 8.0.18使用clone plugin重建MGR的实现
2024-01-24 11:21:30
Python并发爬虫常用实现方法解析
2021-02-06 11:52:08
pycharm 创建py文件总是为txt格式的问题及解决
2022-01-13 16:03:27
GIt在pyCharm的详细使用教程记录
2021-11-21 02:21:05
yolov5模型配置yaml文件详细讲解
2022-02-04 07:21:30
PHP中合并数组的常见方法分享
2023-05-25 12:02:48
ajax局部刷新一个div下jsp内容的方法
2024-05-02 17:04:45
Oracle也有注入漏洞
2010-07-23 13:03:00