Deep Learning nâng cao với PyTorch
Michal Oleszak
Machine Learning Engineer


xhyh
h và y là như nhauBa đầu vào và đầu ra (hai trạng thái ẩn):
h: trạng thái ngắn hạnc: trạng thái dài hạnBa “cổng”:
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 bằng nn.LSTMforward():cc và h bằng 0lstm
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 bằng nn.GRUforward():gru
Deep Learning nâng cao với PyTorch