prevent mypy error, explicitly unpack input list of pytorch mlp model,

This commit is contained in:
Yinon Polak 2023-04-03 18:10:47 +03:00
parent d9d9993179
commit 0c4574b3b7

View File

@ -48,7 +48,7 @@ class PyTorchMLPModel(nn.Module):
self.dropout = nn.Dropout(p=dropout_percent)
def forward(self, x: List[torch.Tensor]) -> torch.Tensor:
x, = x
x = x[0]
x = self.relu(self.input_layer(x))
x = self.dropout(x)
x = self.blocks(x)