tf.app.flags.FLAGS报错解决方法
在tensorflow中,tf.app.flags.FLAGS已经转移到tf.flags.FLAGS路径下
以前可以像下面一样直接创建参数并进行赋值
demo_flags=tf.app.flags.FLAGS
demo.xxxx=xxxxxxx
更新后需要用函数进行定义之后才能直接赋值,例子如下
demo_flags=tf.flags.FLAGS
# 参数为key、值、和注解帮助
tf.flags.DEFINE_string(
demo_flags=tf.app.flags.FLAGS
demo.xxxx=xxxxxxx
demo_flags=tf.flags.FLAGS
# 参数为key、值、和注解帮助
tf.flags.DEFINE_string(