(self, config: CLIPTextConfig)
| 189 | |
| 190 | class Encoder(nn.Module): |
| 191 | def __init__(self, config: CLIPTextConfig): |
| 192 | self.layers = [EncoderLayer(config) for _ in range(config.num_hidden_layers)] |
| 193 | |
| 194 | |
| 195 | class ClipTextModel(nn.Module): |
nothing calls this directly
no test coverage detected