What's the purpose of tf.app.flags in TensorFlow?

前端 未结 5 1616

I am reading some example codes in Tensorflow, I found following code

flags = tf.app.flags
FLAGS = flags.FLAGS
flags.DEFINE_float(\'learning_rate\', 0.01, \         


        
相关标签:
5条回答
  • 2020-12-04 07:14

    The tf.app.flags module is a functionality provided by Tensorflow to implement command line flags for your Tensorflow program. As an example, the code you came across would do the following:

    flags.DEFINE_float('learning_rate', 0.01, 'Initial learning rate.')
    

    The first parameter defines the name of the flag while the second defines the default value in case the flag is not specified while executing the file.

    So if you run the following:

    $ python fully_connected_feed.py --learning_rate 1.00
    

    then the learning rate is set to 1.00 and will remain 0.01 if the flag is not specified.

    As mentioned in this article, the docs are probably not present because this might be something that Google requires internally for its developers to use.

    Also, as mentioned in the post, there are several advantages of using Tensorflow flags over flag functionality provided by other Python packages such as argparse especially when dealing with Tensorflow models, the most important being that you can supply Tensorflow specific information to the code such as information about which GPU to use.

    0 讨论(0)
  • 2020-12-04 07:26

    At Google, they use flag systems to set default values for arguments. It's similar to argparse. They use their own flag system instead of argparse or sys.argv.

    Source: I worked there before.

    0 讨论(0)
  • 2020-12-04 07:28

    After trying many times I found this to print all FLAGS key as well as actual value -

    for key in tf.app.flags.FLAGS.flag_values_dict():
    
      print(key, FLAGS[key].value)
    
    0 讨论(0)
  • 2020-12-04 07:29

    The tf.app.flags module is presently a thin wrapper around python-gflags, so the documentation for that project is the best resource for how to use it argparse, which implements a subset of the functionality in python-gflags.

    Note that this module is currently packaged as a convenience for writing demo apps, and is not technically part of the public API, so it may change in future.

    We recommend that you implement your own flag parsing using argparse or whatever library you prefer.

    EDIT: The tf.app.flags module is not in fact implemented using python-gflags, but it uses a similar API.

    0 讨论(0)
  • 2020-12-04 07:30

    When you use tf.app.run(), you can transfer the variable very conveniently between threads using tf.app.flags. See this for further usage of tf.app.flags.

    0 讨论(0)
提交回复
热议问题