(self)
| 646 | # test whether __repr__ can deal with module delete |
| 647 | class ConvModel3(Module): |
| 648 | def __init__(self): |
| 649 | super().__init__() |
| 650 | self.conv1 = Conv2d(3, 128, 3, bias=False) |
| 651 | self.softmax = Softmax(100) |
| 652 | |
| 653 | def forward(self, inputs): |
| 654 | pass |