Last active
December 20, 2022 20:01
-
-
Save AlessandroMondin/b67e84b0ce9eed0426c10d46ae1aea07 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
self.backbone += [ | |
CBL(in_channels=3, out_channels=first_out, kernel_size=6, stride=2, padding=2), | |
CBL(in_channels=first_out, out_channels=first_out*2, kernel_size=3, stride=2, padding=1), | |
C3(in_channels=first_out*2, out_channels=first_out*2, width_multiple=0.5, depth=2), | |
CBL(in_channels=first_out*2, out_channels=first_out*4, kernel_size=3, stride=2, padding=1), | |
C3(in_channels=first_out*4, out_channels=first_out*4, width_multiple=0.5, depth=4), | |
CBL(in_channels=first_out*4, out_channels=first_out*8, kernel_size=3, stride=2, padding=1), | |
C3(in_channels=first_out*8, out_channels=first_out*8, width_multiple=0.5, depth=6), | |
CBL(in_channels=first_out*8, out_channels=first_out*16, kernel_size=3, stride=2, padding=1), | |
C3(in_channels=first_out*16, out_channels=first_out*16, width_multiple=0.5, depth=2), | |
SPPF(in_channels=first_out*16, out_channels=first_out*16) | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment