(self, text)
| 307 | f"{self.t5_encoder.__class__.__name__} comes with {count_params(self.t5_encoder) * 1.e-6:.2f} M params.") |
| 308 | |
| 309 | def encode(self, text): |
| 310 | return self(text) |
| 311 | |
| 312 | def forward(self, text): |
| 313 | clip_z = self.clip_encoder.encode(text) |
nothing calls this directly
no outgoing calls
no test coverage detected