pytorch mlp rename input to fix mypy error

This commit is contained in:
Yinon Polak 2023-04-04 12:24:29 +03:00
parent 26738370c7
commit a655524221
1 changed files with 2 additions and 2 deletions

View File

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