-
Notifications
You must be signed in to change notification settings - Fork 1
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
ConvTranspose2d Encoder Decoder Conv parameter 4, 2, 1 => 5, 2, 2 #11
Comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@khodid 해리님이 분석한 zi2zi 프로젝트의 설명을 듣고 Encoder Decoder net 구조를 바꾸어 보았다.
해리님이 추가한 부분
기존에는 Conv2d 4,2,1 로 사이즈를 2배 늘려 사용했지만 Conv2d를 5,2,2 로 바꾸어서도 똑같이 2배 늘려 사용할 수 있었다.
설명듣고 추가한부분
ConvTranspose2d 같은 경우는 5,2,2로 할 시 사이즈가 맞지 않아 output_padding을 1 추가해서 맞춰주었다. (5,2,2,1)
다른점
기존의 모델에서는 레이어를 더 추가하더나 하진 않았다
결과
사실 전보다는 잘 움직이는 것 같으나 살짝 애매하게 나왔다. 이런 모양일경우 interpolation이 가능한가 싶다.
The text was updated successfully, but these errors were encountered: