(self, input_ids, position_ids)
| 438 | self.position_embedding = Embedding(77, 768) |
| 439 | |
| 440 | def __call__(self, input_ids, position_ids): |
| 441 | return self.token_embedding(input_ids) + self.position_embedding(position_ids) |
| 442 | |
| 443 | class CLIPTextTransformer: |
| 444 | def __init__(self): |
nothing calls this directly
no outgoing calls
no test coverage detected