-
Notifications
You must be signed in to change notification settings - Fork 328
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
Conv2DTranspose #68
Comments
Hi there, you are partially correct - Conv2DTranspose is something like the oposite of convolution layer - you can call it deconvolution. Increase of the dimension by factor 2 is done by parameter strides=(2, 2) at each transpose layer, not by the mathematical operation transpose convolution itself. Nice visualization is here: https://datascience.stackexchange.com/questions/6107/what-are-deconvolutional-layers. If I'm wrong, somebody please correct me :) |
@mrkolarik Thanks for sharing! |
Hi all,
|
Hi Jocicmarko, I have this question...
What is exactly doing the Conv2DTranspose layer in your code? I assume that is increasing the dimension by a factor of 2 ( I mean, performing the opposite operation that Maxpooling layer does). Am I correct?
The text was updated successfully, but these errors were encountered: