Skip to content

Incorrect Implementation of Resudial Layer #48

@DollarAkshay

Description

@DollarAkshay

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions