(self, x)
| 116 | self.act = act_layer() |
| 117 | self.fc2 = nn.Linear(hidden_features, out_features) |
| 118 | def forward(self, x): |
| 119 | return self.fc2(self.act(self.fc1(x))) |
| 120 | |
| 121 | |
| 122 | def save_tensor(path, t): |
nothing calls this directly
no outgoing calls
no test coverage detected