deeplabcut.pose_estimation_pytorch.models.backbones.cspnext
Implementation of the CSPNeXt Backbone.
Based on the mmdetection CSPNeXt implementation. For more information, see:
https://github.com/open-mmlab/mmdetection/blob/main/mmdet/models/backbones/cspnext.py
For more details about this architecture, see RTMDet: An Empirical Study of Designing
Real-Time Object Detectors: https://arxiv.org/abs/1711.05101.
Classes:
| Name | Description |
|---|---|
CSPNeXt |
CSPNeXt Backbone. |
CSPNeXtLayerConfig |
Configuration for a CSPNeXt layer. |
CSPNeXt
Bases: HuggingFaceWeightsMixin, BaseBackbone
CSPNeXt Backbone.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
str
|
The model variant to build. If |
'cspnext_m'
|
|
bool
|
Whether to load pretrained weights for the model. |
False
|
|
str
|
The model architecture to build. Must be one of the keys of the
|
'P5'
|
|
float
|
Ratio used to adjust the number of channels of the hidden layer. |
0.5
|
|
float
|
Number of blocks in each CSP layer is multiplied by this value. |
0.67
|
|
float
|
Number of channels in each layer is multiplied by this value. |
0.75
|
|
int | tuple[int, ...]
|
The branch indices to output. If a tuple of integers, the outputs are returned as a list of tensors. If a single integer, a tensor is returned containing the configured index. |
-1
|
|
bool
|
Add channel attention to all stages |
True
|
|
str
|
The type of normalization layer to use. |
'SyncBN'
|
|
str
|
The type of activation function to use. |
'SiLU'
|
|
BaseBackbone kwargs. |
{}
|
Source code in deeplabcut/pose_estimation_pytorch/models/backbones/cspnext.py
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 | |
CSPNeXtLayerConfig
dataclass
Configuration for a CSPNeXt layer.