text tf.app.flags.FLAGS用法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text tf.app.flags.FLAGS用法相关的知识,希望对你有一定的参考价值。

#tf.app.flags.FALGS是一个全局变量,用于定义命令行执行时可以传入的参数
FLAGS = tf.app.flags.FLAGS

tf.app.flags.DEFINE_string('train_dir', '/tmp/cifar10_train',
                           """Directory where to write event logs """
                           """and checkpoint.""")
tf.app.flags.DEFINE_integer('max_steps', 1000000,
                            """Number of batches to run.""")
tf.app.flags.DEFINE_boolean('log_device_placement', False,
                            """Whether to log device placement.""")
tf.app.flags.DEFINE_integer('log_frequency', 10,
                            """How often to log results to the console.""")
                            。
                            。
                            。
                            。
def main(unused_argv):
  train_dir =FLAGS.train_dir
  ........


if __name__=='__main__':
  tf.app.run()

#在通过命令行执行该文件的时候,可以python name.py train_dir="" max_steps=90 .....

以上是关于text tf.app.flags.FLAGS用法的主要内容,如果未能解决你的问题,请参考以下文章

tensorflow API _ 2 (tf.app.flags.FLAGS)

TF的FLAGS字典获取

tensorflow高级库

text [宝石用法]宝石用法

在matlab中的text函数的用法?

text-shadow用法