mirror of
https://github.com/sbrl/research-rainfallradar
synced 2024-11-22 09:13:01 +00:00
segmentation: adds xxtiny, but unsure if it's small enough
This commit is contained in:
parent
f4a2c742d9
commit
c45b90764e
1 changed files with 1 additions and 0 deletions
|
@ -6,6 +6,7 @@ from .convnext import add_convnext_block
|
||||||
depths_dims = dict(
|
depths_dims = dict(
|
||||||
# architectures from: https://github.com/facebookresearch/ConvNeXt
|
# architectures from: https://github.com/facebookresearch/ConvNeXt
|
||||||
# A ConvNet for the 2020s: https://arxiv.org/abs/2201.03545
|
# A ConvNet for the 2020s: https://arxiv.org/abs/2201.03545
|
||||||
|
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_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])),
|
convnext_i_tiny = (dict(depths=[3, 9, 3, 3], dims=[768, 384, 192, 96])),
|
||||||
convnext_i_small = (dict(depths=[3, 27, 3, 3], dims=[768, 384, 192, 96])),
|
convnext_i_small = (dict(depths=[3, 27, 3, 3], dims=[768, 384, 192, 96])),
|
||||||
|
|
Loading…
Reference in a new issue