The output of [`TransformerTemporalModel`]. Args: sample (`torch.FloatTensor` of shape `(batch_size x num_frames, num_channels, height, width)`): The hidden states output conditioned on `encoder_hidden_states` input.
| 13 | |
| 14 | @dataclass |
| 15 | class TransformerTemporalModelOutput(BaseOutput): |
| 16 | """ |
| 17 | The output of [`TransformerTemporalModel`]. |
| 18 | |
| 19 | Args: |
| 20 | sample (`torch.FloatTensor` of shape `(batch_size x num_frames, num_channels, height, width)`): |
| 21 | The hidden states output conditioned on `encoder_hidden_states` input. |
| 22 | """ |
| 23 | |
| 24 | sample: torch.FloatTensor |
| 25 | |
| 26 | |
| 27 | class TransformerTemporalModel(ModelMixin, ConfigMixin): |