MCPcopy Create free account
hub / github.com/MeiGen-AI/MultiTalk / forward

Method forward

wan/modules/t5.py:413–417  ·  view source on GitHub ↗
(self, encoder_ids, encoder_mask, decoder_ids, decoder_mask)

Source from the content-addressed store, hash-verified

411 self.apply(init_weights)
412
413 def forward(self, encoder_ids, encoder_mask, decoder_ids, decoder_mask):
414 x = self.encoder(encoder_ids, encoder_mask)
415 x = self.decoder(decoder_ids, decoder_mask, x, encoder_mask)
416 x = self.head(x)
417 return x
418
419
420def _t5(name,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected