-
Notifications
You must be signed in to change notification settings - Fork 19.5k
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
Tensorboard not working with Trainer Pattern #20809
Comments
I fixed it like this but obviously this is not the underlying cause:
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm using the Keras Trainer pattern as illustrated here. The issue when using this pattern is that when you use Tensorboard only the top level weights are being recorded.
The reason for this is that
Tensorboard
is recording the weights for the all the layers inself.model.layers
here. But this equal to[<Sequential name=sequential, built=True>]
and the weights for that Sequential object is []I tried several things:
layers
method in the Trainer object to haverecursive=True
but the weights were still not showing in TensorBoard suggesting that something else is going onI'm open to any suggestions here.
full example
The text was updated successfully, but these errors were encountered: