-
Hello MONAI team ! I am working on 3DGAN to generate 3D volumes from a noise vector. I used the transformers of monai like resize(96,96,96) to train the model but basically the dimensions of my data (512,512,350). Best regards, |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
"Noise vector" means input to some kind of decoder? Why is the noise vector 2D? |
Beta Was this translation helpful? Give feedback.
-
Yes, the "noise vector" is the input to the decoder, it is like |
Beta Was this translation helpful? Give feedback.
Yes, the "noise vector" is the input to the decoder, it is like
"noise_vector = torch.randn(1, 1000).to(device)" and the model is a 3D volume decoder (generator) from the noise vector. then, "decoder(noise_vector)" gives a 3D volumes of dimension (96,96,96).