You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the dqn_agent.py the used tf.keras.layers.Dense(TF2.0) does not support graph reuse as in the way it is intended to. Hence N number of graphs are being initialised.
using tf.layers.dense, inplace of tf.keras.layers.Dense was able to overcome the issue for now.
The text was updated successfully, but these errors were encountered:
In the dqn_agent.py the used tf.keras.layers.Dense(TF2.0) does not support graph reuse as in the way it is intended to. Hence N number of graphs are being initialised.
using tf.layers.dense, inplace of tf.keras.layers.Dense was able to overcome the issue for now.
The text was updated successfully, but these errors were encountered: