(self, *args, **kwargs)
| 136 | return 14 |
| 137 | |
| 138 | def forward(self, *args, **kwargs): |
| 139 | features = self.inner.visual.trunk.forward_features(*args, **kwargs) |
| 140 | token = self.inner.visual.trunk.attn_pool(features) |
| 141 | return self._wrap_output(token, features) |
| 142 | |
| 143 | class SigLIP2Wrapper(CLIPWrapper): |
| 144 | def __init__(self, clip_model, tokenizer, proc, adaptor_name, clip_mode = False, patch_size: int = 16, is_dynamic: bool = True): |
nothing calls this directly
no test coverage detected