Tensorflow 错误:The flag 'xxx' is defined twice
Posted jhc888007
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Tensorflow 错误:The flag 'xxx' is defined twice相关的知识,希望对你有一定的参考价值。
添加
FLAGS = tf.app.flags.FLAGS lst = list(FLAGS._flags().keys()) for key in lst: FLAGS.__delattr__(key)
或
FLAGS = tf.app.flags.FLAGS lst = list(FLAGS._flags().keys()) for key in lst: FLAGS.delattr(key)
参考文献:
https://blog.csdn.net/qq_40488484/article/details/89113678
以上是关于Tensorflow 错误:The flag 'xxx' is defined twice的主要内容,如果未能解决你的问题,请参考以下文章
TensorFlow 中 tf.app.flags 的目的是啥?
tensorflow API _ 2 (tf.app.flags.FLAGS)