(self, input_tensor, temb, encoder_hidden_states, attention_mask=None, anchor_frame_idx=None)
| 544 | self.temporal_transformer.proj_out = zero_module(self.temporal_transformer.proj_out) |
| 545 | |
| 546 | def forward(self, input_tensor, temb, encoder_hidden_states, attention_mask=None, anchor_frame_idx=None): |
| 547 | hidden_states = input_tensor |
| 548 | hidden_states = self.temporal_transformer(hidden_states, encoder_hidden_states, attention_mask) |
| 549 | |
| 550 | output = hidden_states |
| 551 | return output |
| 552 | |
| 553 | class TemporalTransformer3DModel(nn.Module): |
| 554 | def __init__( |
nothing calls this directly
no outgoing calls
no test coverage detected