MCPcopy Create free account
hub / github.com/Standard-Intelligence/hertz-dev / forward

Method forward

tokenizer.py:52–60  ·  view source on GitHub ↗

Args: x (Tensor): Float tensor variable with the shape (B, C, T). Returns: Tensor: Float tensor variable with the shape (B, C, T).

(self, x)

Source from the content-addressed store, hash-verified

50 )
51
52 def forward(self, x):
53 """
54 Args:
55 x (Tensor): Float tensor variable with the shape (B, C, T).
56 Returns:
57 Tensor: Float tensor variable with the shape (B, C, T).
58 """
59 x = self.conv(x)
60 return x
61
62
63class NonCausalConvTranspose1d(nn.Module):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected