-
Notifications
You must be signed in to change notification settings - Fork 5
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
3D CT GAN #2
Comments
Further todos:
|
When training is running on all volumes:
|
We are having problems on allocating enough memory for
New idea which somehow navigates around above problem. We stage our training process:
*this way we will get auto-context as a side effect |
Network performs bad, ideas:
|
|
Last missing feature will be continued at #4. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Implementation of 3D CT GAN Image Synthesis.
Steps to reproduce:
lambda1*G_GAN_Loss + lambda2*MSE_Loss + lambda3*Gradient_Difference_Loss
Generator Architecture (Conv3d-BNorm-ReLU):
[10x32x32x32x1] -> [10x32x32x32x32]
[10x32x32x32x32] -> [10x32x32x32x32]
[10x32x32x32x32] -> [10x32x32x32x32]
[10x32x32x32x32] -> [10x32x32x32x64]
[10x32x32x32x64] -> [10x32x32x32x64]
[10x32x32x32x64] -> [10x32x32x32x64]
[10x32x32x32x64] -> [10x32x32x32x64]
[10x32x32x32x64] -> [10x32x32x32x32]
[10x32x32x32x32] -> [10x32x32x32x32]
[10x32x32x32x32] -> [10x16x16x16x1]
Discriminator Architecture (Conv3d-BNorm-ReLU-MaxPool):
[10x16x16x16x1] -> [10x16x16x16x32]
[10x16x16x16x32] -> [10x16x16x16x64]
[10x16x16x16x64] -> [10x16x16x16x128]
[10x16x16x16x128] -> [10x16x16x16x256]
Discriminator Architecture (FCN):
5.
[10x16x16x16x256] -> [10x16x16x16x512]
6.
[10x16x16x16x512] -> [10x16x16x16x128]
7.
[10x16x16x16x512] -> [10x16x16x16x1]
8. Sigmoid
Additional:
The text was updated successfully, but these errors were encountered: