Jonny Taylor

Results 4 issues of Jonny Taylor

The very first line no longer works: `using Flux, Flux.Data.MNIST` gives the error ``UndefVarError: `MNIST` not defined`` The MNIST dataset is now available from MLDatasets, but it seems like the...

Problem: Fresh install of tensorflow_privacy doesn't work Steps to recreate: Create a new environment, run `pip install tensorflow-privacy` Now from within python, run `import tensorflow_privacy` I get this horrendous-looking error...

I've been converting my code from tensorflow to pytorch and it's much easier to get it training faster. However, the performance after n epochs is worse in torch. After lots...

Based on the [masking example](https://wessel.ai/neuralprocesses/advanced_usage.html), this works fine: ``` import lab as B import torch import neuralprocesses.torch as nps cnp = nps.construct_convgnp( dim_x=2, dim_yc=(1, 1), # Two context sets, both...