(self)
| 475 | |
| 476 | class Simple2(Module): |
| 477 | def __init__(self): |
| 478 | super().__init__() |
| 479 | self.conv1 = Conv1d(1, 1, kernel_size=3, bias=False) |
| 480 | self.conv0 = Conv1d(1, 1, kernel_size=3, bias=False) |
| 481 | self.conv1.weight = self.conv0.weight |
| 482 | |
| 483 | def forward(self, inputs): |
| 484 | pass |