(self, x)
| 436 | self.emo_embed = nn.Sequential(nn.ReLU(), nn.Linear(512, 30)) |
| 437 | |
| 438 | def forward_feature(self, x): |
| 439 | net = self.model(x) |
| 440 | return net |
| 441 | |
| 442 | def forward(self, x): |
| 443 | x = self.model(x) |
nothing calls this directly
no outgoing calls
no test coverage detected