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

Method forward

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

Source from the content-addressed store, hash-verified

286 self.res_block = nn.Sequential(conv_unit, *res_units)
287
288 def forward(self, x):
289 out = x
290 for unit in self.res_block:
291 out = unit(out)
292 return out
293
294 def inference(self, x):
295 for unit in self.res_block:

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected