(self, image_embeds)
| 359 | torch.nn.LayerNorm(out_dim)) |
| 360 | |
| 361 | def forward(self, image_embeds): |
| 362 | clip_extra_context_tokens = self.proj(image_embeds) |
| 363 | return clip_extra_context_tokens |
| 364 | |
| 365 | |
| 366 | class AudioProjModel(ModelMixin, ConfigMixin): |
nothing calls this directly
no outgoing calls
no test coverage detected