AttributeError: module 'tensorflow._api.v2.train' has no attribute 'GradientDescentOptimizer'
Use version for the TensorFlow 2.x:
tf.optimizers.SGD (learning_rate=0.001, name='SGD')
AttributeError: module 'tensorflow._api.v2.train' has no attribute 'GradientDescentOptimizer'
Use version for the TensorFlow 2.x:
tf.optimizers.SGD (learning_rate=0.001, name='SGD')
AttributeError: module 'tensorflow._api.v2.train' has no attribute 'RMSPropOptimizer' site:stackoverflow.com
change
tf.train.Optimizer
to
tf.compat.v1.train.Optimizer
AttributeError: module 'tensorflow._api.v2.train' has no attribute 'AdamOptiimizer'
tf.train.AdamOptimizer() => tf.optimizers.Adam()
From https://www.tensorflow.org/versions/r2.0/api_docs/python/tf/optimizers
Answer source-> https://stackoverflow.com/questions/55318273/tensorflow-api-v2-train-has-no-attribute-adamoptimizer
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us