deeplabcut.pose_estimation_pytorch.models.backbones.hrnet_coam
Classes:
| Name | Description |
|---|---|
HRNetCoAM |
HRNet backbone with Conditional Attention Module (CoAM). |
HRNetCoAM
Bases: HRNet
HRNet backbone with Conditional Attention Module (CoAM).
This version returns high-resolution feature maps of size 1/4 * original_image_size.
Attributes:
| Name | Type | Description |
|---|---|---|
model |
the HRNet model |
|
coam_stages |
CoAM blocks for each stage |
Methods:
| Name | Description |
|---|---|
__init__ |
Constructs an ImageNet pretrained HRNet from timm and creates CoAM blocks. |
forward |
Forward pass through the HRNetCoAM backbone. |
Source code in deeplabcut/pose_estimation_pytorch/models/backbones/hrnet_coam.py
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 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 | |
__init__
__init__(
kpt_encoder: dict | BaseKeypointEncoder,
base_model_name: str = "hrnet_w32",
pretrained: bool = True,
coam_modules: tuple[int, ...] = (2,),
selfatt_coam_modules: tuple[int, ...] | None = None,
channel_att_only: bool = False,
att_heads: int = 1,
img_size: tuple[int, int] = (256, 256),
**kwargs
) -> None
Constructs an ImageNet pretrained HRNet from timm and creates CoAM blocks.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
str
|
Type of HRNet (e.g., 'hrnet_w32', 'hrnet_w48'). |
'hrnet_w32'
|
|
bool
|
If True, loads the model with ImageNet pretrained weights. |
True
|
|
tuple[int, ...]
|
List of stages to apply CoAM. |
(2,)
|
|
tuple[int, ...] | None
|
List of stages to apply Self-Attention-CoAM. |
None
|
|
bool
|
Whether to use only channel attention block in CoAM. |
False
|
|
int
|
Number of attention heads. |
1
|
|
Type of conditional encoding ('stacked', 'colored', or greyscale). |
required | |
|
tuple[int, int]
|
The (height, width) size of the input images. |
(256, 256)
|
|
Number of joints in the dataset. |
required |
Source code in deeplabcut/pose_estimation_pytorch/models/backbones/hrnet_coam.py
forward
Forward pass through the HRNetCoAM backbone.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
Tensor
|
Input tensor of shape (batch_size, channels, height, width). |
required |
|
ndarray
|
Conditional keypoints of shape (batch_size, num_joints, 2). |
required |
Returns:
| Type | Description |
|---|---|
|
the feature map |