-
Notifications
You must be signed in to change notification settings - Fork 911
New issue
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
Problem with shareable variables. with tf.variable_scope('model', reuse=tf.AUTO_REUSE) #20
Comments
I guess you are talking about the reinforcement learning sample. |
@martin-gorner Sorry about misunderstandings. Yes, I'm talking about reinforcement learning sample. I found out that non-changed sample doesn't work. python 3.6 |
@yanchvlad Thanks for reporting the issue. This is a known issue that happened between TensorFlow versions 1.8 and 1.9, where the reuse behavior is different for tf.keras models. For now my suggestion would be either of the following: a. use TensorFlow version 1.8 or b. rewrite the |
@yanchvlad if you make the changes before we do please send a pull req! |
In my network rollout of next epoch dosen't use trained weights of prev train operation. And I see in tensorboard that rollout and train graph have seperate 'model' and layers with different names (for ex. dense_1, dense_0, dense_2, dence_3).
Where is a problem?
I slightly changed code:
`
`
The text was updated successfully, but these errors were encountered: