sonnet icon indicating copy to clipboard operation
sonnet copied to clipboard

TensorFlow-based neural network library

Results 40 sonnet issues
Sort by recently updated
recently updated
newest added

I got this error when I try to create a instance with initializers. This error comes from **sonnet.nets.MLP** . Any solutions? thanks

Changes addressed: - In DNC, util_test.py, assertRaisesIncompatibleShapesError is present for TF>=2.5 .Added conditions so that TF

cla: yes

It appears as though the v2 branch has removed `docs/INSTALL.md`, `install.sh`, `BUILD` and the `:install` bazel target. Here's the full diff between versions 1.33 and 2.0.0: https://github.com/deepmind/sonnet/compare/v1.33...v2.0.0. What are the...

Dear Team Deepmind, I am really grateful that you shared a vqvae_example with sonnet2. However, when running it, I currently encounter a problem of NAN vqvae loss from the beginning....

Wondering, why the transformer codes are missing from the v2 branch. Any plan of bringing them in in the future ?

I think 'if syntax' is better than 'if else syntax' in the early return pattern. Thanks You!

cla: yes

Dear Deepmind group, Thank you for offering this nice repository, it is very helpful. Would you mind sharing with us the pretrained models for vq-vae-2 (https://arxiv.org/abs/1906.00446), especially the one on...

Hi, I'm extremely new to both TF and Sonnet. I was trying to figure out how to save and load a trained network. I was following what was written in...

Before trying to tackle #161 I thought it can be helpful to a bit simplify navigation in `recurrent.py` by reducing the number of lines of code there. Carefully extracting few...

cla: yes

By updating all embeddings regardless of if they are being used (in the current batch) you are decaying them towards 0. Is this intended? https://github.com/deepmind/sonnet/blob/master/sonnet/python/modules/nets/vqvae.py _I have mostly read re-implementations...