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

Method forward

tokenizer.py:193–196  ·  view source on GitHub ↗
(self, x)

Source from the content-addressed store, hash-verified

191 self.conv2 = Conv1d1x1(out_channels, out_channels, bias)
192
193 def forward(self, x):
194 y = self.conv1(self.activation(x))
195 y = self.conv2(self.activation(y))
196 return x + y
197
198
199class CausalResUnit(NonCausalResUnit):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected