(self)
| 80 | return output, hidden |
| 81 | |
| 82 | def init_hidden(self): |
| 83 | # (num_layers * num_directions, batch, hidden_size) |
| 84 | return cuda_variable(torch.zeros(self.n_layers, 1, self.hidden_size)) |
| 85 | |
| 86 | |
| 87 | class AttnDecoderRNN(nn.Module): |
nothing calls this directly
no test coverage detected