confvnext_intrevse: add shallow

This commit is contained in:
Starbeamrainbowlabs 2022-12-08 19:10:12 +00:00
parent c27869630a
commit 2a1772a211
Signed by: sbrl
GPG key ID: 1BE5172E637709C2

View file

@ -6,6 +6,7 @@ from .convnext import add_convnext_block
depths_dims = dict(
# architectures from: https://github.com/facebookresearch/ConvNeXt
# A ConvNet for the 2020s: https://arxiv.org/abs/2201.03545
convnext_i_shallow= (dict(depths=[2, 3, 2], dims=[132, 96, 66])),
convnext_i_xxtiny = (dict(depths=[3, 6, 3, 3], dims=[264, 132, 96, 66])),
convnext_i_xtiny = (dict(depths=[3, 6, 3, 3], dims=[528, 264, 132, 66])),
convnext_i_tiny = (dict(depths=[3, 9, 3, 3], dims=[768, 384, 192, 96])),