(self, input)
| 340 | self.dropout = nn.Dropout(dropout_p) |
| 341 | |
| 342 | def forward(self, input): |
| 343 | embedded = self.dropout(self.embedding(input)) |
| 344 | output, hidden = self.gru(embedded) |
| 345 | return output, hidden |
| 346 | |
| 347 | ###################################################################### |
| 348 | # The Decoder |
nothing calls this directly
no outgoing calls
no test coverage detected