(
self,
pix_feat: torch.Tensor,
masks: torch.Tensor,
skip_mask_sigmoid: bool = False,
)
| 160 | self.out_dim = out_dim |
| 161 | |
| 162 | def forward( |
| 163 | self, |
| 164 | pix_feat: torch.Tensor, |
| 165 | masks: torch.Tensor, |
| 166 | skip_mask_sigmoid: bool = False, |
| 167 | ) -> Tuple[torch.Tensor, torch.Tensor]: |
| 168 | # Process masks |
| 169 | # sigmoid, so that less domain shift from gt masks which are bool |
| 170 | if not skip_mask_sigmoid: |
| 171 | masks = F.sigmoid(masks) |
| 172 | masks = self.mask_downsampler(masks) |
| 173 | |
| 174 | # Fuse pix_feats and downsampled masks |
| 175 | # in case the visual features are on CPU, cast them to CUDA |
| 176 | pix_feat = pix_feat.to(masks.device) |
| 177 | |
| 178 | x = self.pix_feat_proj(pix_feat) |
| 179 | x = x + masks |
| 180 | x = self.fuser(x) |
| 181 | x = self.out_proj(x) |
| 182 | |
| 183 | pos = self.position_encoding(x).to(x.dtype) |
| 184 | |
| 185 | return {"vision_features": x, "vision_pos_enc": [pos]} |
nothing calls this directly
no outgoing calls
no test coverage detected