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

Incorrect Implementation of Resudial Layer #48

Open
DollarAkshay opened this issue May 30, 2020 · 1 comment
Open

Incorrect Implementation of Resudial Layer #48

DollarAkshay opened this issue May 30, 2020 · 1 comment

Comments

@DollarAkshay
Copy link

DollarAkshay commented May 30, 2020

I was comparing your Residual Architecture to the actual Residual Architecture as shown in this cheat sheet.

Your Implementation

  • input
  • Conv2D 75x4x4
  • BatchNormalization
  • Add input
  • LeakyReLU

Actual Implementation

  • input
  • Conv2D 256x3x3
  • BatchNormalization
  • ReLU
  • Conv2D 256x3x3
  • BatchNormalization
  • Add input
  • ReLU

I'm just going to put this here so that people know the difference in implementation.

@DollarAkshay DollarAkshay changed the title Wong Implementation of Resudial Layer Incorrect Implementation of Resudial Layer May 30, 2020
@DavidRSeWell
Copy link

I believe his implementation is most likely just scaled down since its not actually being run on Go

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

2 participants