Intermediate Deep Learning with PyTorch
Michal Oleszak
Machine Learning Engineer


xhyh
h a y jsou totožnéTři vstupy a výstupy (dva skryté stavy):
h: krátkodobý stavc: dlouhodobý stavTři "brány":
class Net(nn.Module): def __init__(self, input_size): super().__init__()self.lstm = nn.LSTM( input_size=1, hidden_size=32, num_layers=2, batch_first=True, ) self.fc = nn.Linear(32, 1)def forward(self, x): h0 = torch.zeros(2, x.size(0), 32) c0 = torch.zeros(2, x.size(0), 32)out, _ = self.lstm(x, (h0, c0))out = self.fc(out[:, -1, :]) return out
__init__():nn.RNN za nn.LSTMforward():cc a h nulamilstm
class Net(nn.Module): def __init__(self, input_size): super().__init__()self.gru = nn.GRU( input_size=1, hidden_size=32, num_layers=2, batch_first=True, ) self.fc = nn.Linear(32, 1)def forward(self, x): h0 = torch.zeros(2, x.size(0), 32) out, _ = self.gru(x, h0) out = self.fc(out[:, -1, :]) return out
__init__():nn.RNN za nn.GRUforward():gru
Intermediate Deep Learning with PyTorch