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

Difference Module #113

Open
bo123bo321 opened this issue Dec 2, 2024 · 1 comment
Open

Difference Module #113

bo123bo321 opened this issue Dec 2, 2024 · 1 comment

Comments

@bo123bo321
Copy link

Hello, can you introduce the principle of this module

def conv_diff(in_channels, out_channels):
return nn.Sequential(
nn.Conv2d(in_channels, out_channels, kernel_size=3, padding=1),
nn.ReLU(),
nn.BatchNorm2d(out_channels),
nn.Conv2d(out_channels, out_channels, kernel_size=3, padding=1),
nn.ReLU()
)

@bo123bo321
Copy link
Author

Why does this module have A similar function as abs (A-B)

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