| 118 | |
| 119 | |
| 120 | class MyModule(torch.nn.Module): |
| 121 | def __init__(self): |
| 122 | super().__init__() |
| 123 | self.lin = torch.nn.Linear(3, 3) |
| 124 | |
| 125 | def forward(self, x): |
| 126 | return torch.nn.functional.relu(self.lin(x)) |
| 127 | |
| 128 | |
| 129 | mod1 = MyModule() |
no outgoing calls
no test coverage detected