Skip to content
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

ImageNet pretrained model layer dimensions #30

Open
ch3njust1n opened this issue Nov 30, 2016 · 1 comment
Open

ImageNet pretrained model layer dimensions #30

ch3njust1n opened this issue Nov 30, 2016 · 1 comment

Comments

@ch3njust1n
Copy link

I'm studying this code and would like to know if my understanding is correct.

Generator:

layer gifn gain_ifn bias_ifn
1 (100, 128 * 8 * 4 * 4) 128 * 8 * 4 * 4 128 * 8 * 4 * 4
2 (1024, 512, 5, 5) 512 512
3 (512, 256, 5, 5) 256 256
4 (256, 128, 5, 5) 128 128
5 (128, 64, 5, 5) 64 64
6 (64, 32, 5, 5) 32 32
output (32, 3, 5, 5) ---- ----

Discriminator:

layer gifn gain_ifn bias_ifn
1 (32, 3, 5, 5) ---- ----
2 (64, 32, 5, 5) 64 64
3 (128, 64, 5, 5) 128 128
4 (256, 128, 5, 5) 256 256
5 (512, 256, 5, 5) 512 512
6 (1024, 512, 5, 5) 1024 1024
output (128 * 8 * 4 * 4, 1) ---- ----

Are these dimensions correct for the ImageNet model?

@ch3njust1n ch3njust1n changed the title ImageNet pretrained model parameters ImageNet pretrained model layer dimensions Nov 30, 2016
@ch3njust1n
Copy link
Author

Also could you please upload the training code for ImageNet?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant