(self, model)
| 217 | |
| 218 | class FinalLayer(nn.Module): |
| 219 | def __init__(self, model): |
| 220 | super().__init__() |
| 221 | self.norm_out = model.norm_out |
| 222 | self.proj_out = model.proj_out |
| 223 | self.model = [model] |
| 224 | |
| 225 | def __getattr__(self, name): |
| 226 | return getattr(self.model[0], name) |