(self, text, normalized=False)
| 1005 | return self._image_encoder(image, normalized=normalized) |
| 1006 | |
| 1007 | def encode_text(self, text, normalized=False): |
| 1008 | with self.text_autocast(): |
| 1009 | return self._text_encoder(text, normalized=normalized) |
| 1010 | |
| 1011 | @property |
| 1012 | def logit_scale(self): |
no outgoing calls
no test coverage detected