MCPcopy Index your code
hub / github.com/Standard-Intelligence/hertz-dev / forward

Method forward

tokenizer.py:531–538  ·  view source on GitHub ↗
(self, audio_input)

Source from the content-addressed store, hash-verified

529 return self.data_from_latent(latent)
530
531 def forward(self, audio_input):
532 x = self.encode(audio_input)
533
534 l_in = x.transpose(1, 2)
535 l, latent = self.compressor(l_in)
536
537 xhat = self.decode(l)
538 return xhat, latent
539
540
541

Callers

nothing calls this directly

Calls 2

encodeMethod · 0.95
decodeMethod · 0.95

Tested by

no test coverage detected