Avik Pal
Avik Pal
I am trying to reproduce the model for unsupervised mesh reconstruction (using the same script as in the `examples` directory). But during training I get the following recurring errors (the...
MWE: ```julia using Zygote ps = (weight = randn(Float32, 2, 2),) x = randn(Float32, 2, 1) W = ps.weight # Works gradient(W) do w sum(gradient(x) do y sum(w * y)...
Currently, if BatchNorm is being performed on GPU we assert that the parameters must be trainable and statistics must be tracked. Which is a reasonable assumption given CUDNN requires an...
The code is complete and mostly tested. I will remove the WIP tag once I finish training the model. Also will add the Project.toml files and README once training is...
Added a sample Residual Network which is going to be trained on CIFAR10. The code can be used as a building block to build deeper Residual Networks. #30
## Current Issues: - [ ] Line 47 in upsample.jl is not a safe operation without atomic addition. It results in incorrect and inconsistent answers in the backward pass. @maleadt...
### Background TorchGAN started out with a primary focus on GANs. But recent literature has suggested that GANs are being used in time series modeling, NLP, etc. Hence the name...