(self)
| 151 | |
| 152 | @property |
| 153 | def patch_size(self): |
| 154 | return self._patch_size |
| 155 | |
| 156 | def forward(self, x: torch.Tensor, *args, **kwargs): |
| 157 | out_h = x.shape[-2] // self._patch_size |
nothing calls this directly
no outgoing calls
no test coverage detected