(self, input_size, output_size)
| 100 | # Our model |
| 101 | |
| 102 | def __init__(self, input_size, output_size): |
| 103 | super(Model, self).__init__() |
| 104 | self.fc = nn.Linear(input_size, output_size) |
| 105 | |
| 106 | def forward(self, input): |
| 107 | output = self.fc(input) |
nothing calls this directly
no outgoing calls
no test coverage detected