MCPcopy Create free account
hub / github.com/UVA-Computer-Vision-Lab/FrameINO / __init__

Method __init__

architecture/embeddings.py:1887–1892  ·  view source on GitHub ↗
(self, encoder_dim: int, time_embed_dim: int, num_heads: int = 64)

Source from the content-addressed store, hash-verified

1885
1886class TextTimeEmbedding(nn.Module):
1887 def __init__(self, encoder_dim: int, time_embed_dim: int, num_heads: int = 64):
1888 super().__init__()
1889 self.norm1 = nn.LayerNorm(encoder_dim)
1890 self.pool = AttentionPooling(num_heads, encoder_dim)
1891 self.proj = nn.Linear(encoder_dim, time_embed_dim)
1892 self.norm2 = nn.LayerNorm(time_embed_dim)
1893
1894 def forward(self, hidden_states):
1895 hidden_states = self.norm1(hidden_states)

Callers

nothing calls this directly

Calls 2

AttentionPoolingClass · 0.85
__init__Method · 0.45

Tested by

no test coverage detected