(self, norm_out, proj_out)
| 533 | |
| 534 | class OutputWrapper(nn.Module): |
| 535 | def __init__(self, norm_out, proj_out): |
| 536 | super().__init__() |
| 537 | self.norm_out = norm_out |
| 538 | self.proj_out = proj_out |
| 539 | |
| 540 | @torch.autocast('cuda', dtype=AUTOCAST_DTYPE) |
| 541 | def forward(self, inputs): |