(self, text)
| 205 | f"{self.t5_encoder.__class__.__name__} comes with {count_params(self.t5_encoder)*1.e-6:.2f} M params.") |
| 206 | |
| 207 | def encode(self, text): |
| 208 | return self(text) |
| 209 | |
| 210 | def forward(self, text): |
| 211 | clip_z = self.clip_encoder.encode(text) |
nothing calls this directly
no outgoing calls
no test coverage detected