(self)
| 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)) |
nothing calls this directly
no outgoing calls
no test coverage detected