(self)
| 425 | |
| 426 | class CLIPEncoder: |
| 427 | def __init__(self): |
| 428 | self.layers = [CLIPEncoderLayer() for i in range(12)] |
| 429 | |
| 430 | def __call__(self, hidden_states, causal_attention_mask): |
| 431 | for l in self.layers: |
nothing calls this directly
no test coverage detected