How Could I Solve The Flags=tensorflow.app.flags Error
import tensorflow as tf flags = tf.app.flags AttributeError: module 'tensorflow' has no attribute 'app'
Solution 1:
Try to use: import tensorflow.compat.v1 as tf
Try to use: import tensorflow.compat.v1 as tf
You may like these posts
Post a Comment for "How Could I Solve The Flags=tensorflow.app.flags Error"