(self, x)
| 58 | return x |
| 59 | |
| 60 | def forward(self, x): |
| 61 | out = self.embedding(x[0]) |
| 62 | out = out.unsqueeze(1) |
| 63 | out = torch.cat([self.conv_and_pool(out, conv) for conv in self.convs], 1) |
| 64 | out = self.dropout(out) |
| 65 | out = self.fc(out) |
| 66 | return out |
nothing calls this directly
no test coverage detected