(self)
| 10 | |
| 11 | class Sequence(nn.Module): |
| 12 | def __init__(self): |
| 13 | super(Sequence, self).__init__() |
| 14 | self.lstm1 = nn.LSTMCell(1, 51) |
| 15 | self.lstm2 = nn.LSTMCell(51, 51) |
| 16 | self.linear = nn.Linear(51, 1) |
| 17 | |
| 18 | def forward(self, input, future = 0): |
| 19 | outputs = [] |
nothing calls this directly
no outgoing calls
no test coverage detected