(self, x)
| 129 | self.fc_layers = nn.Sequential(*fc_layers) |
| 130 | |
| 131 | def forward(self, x): |
| 132 | x = self.embedding(x) |
| 133 | x = self.fc_layers(x) |
| 134 | return x |
| 135 | |
| 136 | class HECTOR(nn.Module): |
| 137 | def __init__( |
nothing calls this directly
no outgoing calls
no test coverage detected