(self, model)
| 263 | |
| 264 | class FinalLayer(nn.Module): |
| 265 | def __init__(self, model): |
| 266 | super().__init__() |
| 267 | self.norm_out = model.norm_out |
| 268 | self.proj_out = model.proj_out |
| 269 | self.model = [model] |
| 270 | |
| 271 | def __getattr__(self, name): |
| 272 | return getattr(self.model[0], name) |