(self, image_embeds)
| 269 | self.norm = nn.LayerNorm(cross_attention_dim) |
| 270 | |
| 271 | def forward(self, image_embeds): |
| 272 | embeds = image_embeds |
| 273 | x = self.proj(embeds).reshape(-1, self.clip_extra_context_tokens, self.cross_attention_dim) |
| 274 | x = self.norm(x) |
| 275 | return x |
nothing calls this directly
no outgoing calls
no test coverage detected