We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update deep_q_network.py: ... readout_action = tf.reduce_sum(tf.mul(readout, a), reduction_indices=1) ...
To: readout_action = tf.reduce_sum(tf.multiply(readout, a), reduction_indices=1)
TF 1.0 change: http://stackoverflow.com/questions/42217059/tensorflowattributeerror-module-object-has-no-attribute-mul
The text was updated successfully, but these errors were encountered:
i faced the same problem
Sorry, something went wrong.
tf.mul was deprecated please use tf.multiply
please transform the “mul” into “multiply” because there are slight differences between different versions
i agree ,and maybe you want see this https://www.tensorflow.org/install/migration
No branches or pull requests
Update deep_q_network.py:
...
readout_action = tf.reduce_sum(tf.mul(readout, a), reduction_indices=1)
...
To:
readout_action = tf.reduce_sum(tf.multiply(readout, a), reduction_indices=1)
TF 1.0 change:
http://stackoverflow.com/questions/42217059/tensorflowattributeerror-module-object-has-no-attribute-mul
The text was updated successfully, but these errors were encountered: