(self)
| 205 | # Cell |
| 206 | class _ExogenousBasisInterpretable(nn.Module): |
| 207 | def __init__(self): |
| 208 | super().__init__() |
| 209 | |
| 210 | def forward(self, theta: t.Tensor, insample_x_t: t.Tensor, outsample_x_t: t.Tensor) -> Tuple[t.Tensor, t.Tensor]: |
| 211 | backcast_basis = insample_x_t |